我正在尝试在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
被添加到此数组中?