序列化,資料庫存多個欄位資料

php的小菜鳥發表於2018-07-10
$old[`xxx`] = (int) $_POST[`ooo`];
$res = serialize($old);

取出:

var_dump(unserialize($res));die;

手冊:http://php.net/manual/zh/function.serialize.php
序列化表單(Ajax中):https://blog.csdn.net/xinghuo0007/article/details/72654817


相關文章