Last active
April 1, 2025 12:59
-
-
Save vielhuber/c3a3b1e6fc16fe5b1fe4 to your computer and use it in GitHub Desktop.
cookies #php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// unset | |
unset($_COOKIE['cookie']); setcookie('cookie', '', time() - 3600, '/'); | |
// set | |
setcookie('cookie', $value, time()+60*60*24*1, '/'); | |
$_COOKIE['cookie'] = $value; // immediately set it for current request | |
// get | |
$_COOKIE['cookie'] | |
urldecode($_COOKIE['meinCookie']) // use this with umlauts when stored in js via encodeURIComponent | |
// check | |
if(isset($_COOKIE['cookie'])){ /* ... */ } | |
// set cookies without urlencode | |
setrawcookie(...) | |
/* store arrays in a cookie */ | |
// set | |
$array = ['foo','bar']; | |
$array = serialize($array); | |
setcookie('cookie', $array, time()+60*60*24*1, '/'); | |
// get | |
$array = $_COOKIE['cookie']; | |
$array = stripslashes($array); // because setcookie adds backslashes \ before " | |
$array = unserialize($array); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment