Re: re-setting all cookies

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Ken wrote:
/*From the php manual
$arr = array(1, 2, 3, 4);
foreach ($arr as &$value) {
   $value = $value * 2;
}
*/

$_COOKIE is a variable... but you need the key for setcookie(). so you can do:

foreach($_COOKIE as $key => $value){
   setcookie("$key","", time()-3600);
}

i know there is the $value bit that we never use, but this is the
simplest form I can think of. can anyone else think of something
better?

foreach(array_keys($_COOKIE) as $key) { setcookie($key,"",....

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux