Re: Grab an array from a cookie without throwing errors?

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

 



Brian Dunning wrote:
I've got a cookie that's either non-existent or a serialized array. I'm trying all sorts of different code combinations to retrieve it into an array variable, but everything I try throws up some combination of notices and/or warnings. Here is my latest & greatest:

$cookie = $_COOKIE['bookmarks'];
if(unserialize($cookie) == true) {
    $bookmarks = unserialize($cookie);
} else {
    $bookmarks = array();
}

Use isset

if ( isset ( $_COOKIE['bookmarks'] ) && unserialize ( $_COOKIE['bookmarks'] ) ) {
$bookmarks = unserialize ( $_COOKIE['bookmarks'] );
} else {
$bookmarks = array();
}


--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
john@xxxxxxxxxxxx

--
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