Skip to content

Instantly share code, notes, and snippets.

@vielhuber
Last active April 1, 2025 12:59
Show Gist options
  • Save vielhuber/c3a3b1e6fc16fe5b1fe4 to your computer and use it in GitHub Desktop.
Save vielhuber/c3a3b1e6fc16fe5b1fe4 to your computer and use it in GitHub Desktop.
cookies #php
<?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