php在进行数据反序列化的时候出现错误:
unserialize(): Error at offset 85 of 1220 bytes in
出现这种情况需要对序列化字符串进行一些操作:
$data = preg_replace('!s:(d+):"(.*?)";!e', "'s:'.strlen('$2').':"$2";'", $data);
这样进行格式化后正常编译;
解决方法来源地址:http://stackoverflow.com/questions/10152904/unserialize-function-unserialize-error-at-offset