php中序列化與反序列化

suboysugar發表於2015-04-03

http://www.cnblogs.com/A-Song/archive/2011/12/13/2285619.html

轉自:http://qing.weibo.com/tag/unserialize

把複雜的資料型別壓縮到一個字串中

serialize() 把變數和它們的值編碼成文字形式
unserialize() 恢復原先變數
eg:
$stooges = array(`Moe`,`Larry`,`Curly`);
$new = serialize($stooges);
print_r($new);echo "<br />";
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 `<a href="next.php?cart=`.urlencode(serialize($shopping)).`">next</a>`;
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()進行處理:
複製程式碼
$fp = fopen(`/tmp/cart`,`w`);
fputs($fp,addslashes(serialize($a)));
fclose($fp);
//如果magic_quotes_runtime開啟
$new_cat = unserialize(stripslashes(file_get_contents(`/tmp/cart`)));
//如果magic_quotes_runtime關閉
$new_cat = unserialize(file_get_contents(`/tmp/cart`));
在啟用了magic_quotes_runtime的情況下,從資料庫中讀取序列化的資料也必須經過stripslashes()的處理,儲存到資料庫中的序列化資料必須要經過addslashes()的處理,以便能夠適當地儲存。
mysql_query("insert into cart(id,data) values(1,`".addslashes(serialize($cart))."`)");
$rs = mysql_query(`select data from cart where id=1`);
$ob = mysql_fetch_object($rs);
//如果magic_quotes_runtime開啟
$new_cart = unserialize(stripslashes($ob->data));
//如果magic_quotes_runtime關閉
$new_cart = unserialize($ob->data);
複製程式碼
當對一個物件進行反序列化操作時,PHP會自動地呼叫其__wakeUp()方法。這樣就使得物件能夠重新建立起序列化時未能保留的各種狀態。例如:資料庫連線等。

如何聯絡我:【萬里虎】www.bravetiger.cn
【QQ】3396726884 (諮詢問題100元起,幫助解決問題500元起)
【部落格】http://www.cnblogs.com/kenshinobiy/


相關文章