无法在php中反序列化/序列化

时间:2013-08-13 18:05:28

标签: php arrays serialization

我正在尝试在php中序列化一个数组:

我使用以下语法

$value = serialize(get_option('chat_lord_linus_database'));

基本数组是:

Array ( [0] => wordpress [1] => localhost [2] => root [3] => ) 

当它被序列化时,返回的数组是:

a:4:{i:0;s:9:\"wordpress\";i:1;s:9:\"localhost\";i:2;s:4:\"root\";i:3;s:0:\"\";}

当我尝试反序列化它时,它会返回空白,而且我也没有理解为什么slashes被添加到此数组中?

0 个答案:

没有答案