把複雜的資料型別壓縮到一個字串中
serialize() 把變數和它們的值編碼成文字形式
unserialize() 恢復原先變數
$stooges = array('Moe','Larry','Curly');
$new = serialize($stooges);
print_r($new);echo "
";
print_r(unserialize($new));
結果:a:3:{i:0;s:3:"Moe";i:1;s:5:"Larry";i:2;s:5:"Curly";}
Array ( [0] => Moe [1] => Larry [2] => Curly )
當把這些序列化的資料放在URL中在頁面之間會傳遞時,需要對這些資料呼叫urlencode(),以確保在其中的URL元字元進行處理:
$shopping = array('Poppy seed bagel' => 2,'Plain Bagel' =>1,'Lox' =>4);
echo 'urlencode(serialize($shopping)).'">next';
margic_quotes_gpc和magic_quotes_runtime配置項的設定會影響傳遞到unserialize()中的資料。
如果magic_quotes_gpc項目是啟用的,那麼在URL、POST變數以及cookies中傳遞的資料在反序列化之前必須用stripslashes()進行處理:
$new_cart = unserialize(stripslashes($cart)); //如果magic_quotes_gpc开启
$new_cart = unserialize($cart);
如果magic_quotes_runtime是啟用的,那麼在向檔案中寫入序列化的資料之前必須用addslashes()進行處理,而在讀取它們之前則必須用stripslashes()進行處理:
//当对一个对象进行反序列化操作时,PHP会自动地调用其wakeUp()方法。这样就使得对象能够重新建立起序列化时未能保留的各种状态。例如:数据库连接等。
以上是深入了解php中序列化與反序列化的詳細內容。更多資訊請關注PHP中文網其他相關文章!