PHP反序列化错误

Zab*_*abs 0 php serialization syntax-error

我收到以下错误: -

消息:unserialize()function.unserialize:错误65517字节的偏移量65517

反序列化是否具有最大大小?

这是PHP中的问题:

$array = unserialize($emails);

// this is the output of $emails (not all of it as it is huge)
string(65535) "a:12134:{i:0;s:29:"12someemail@addr.com ";i:1;s:31:"5myname@email.com "
Run Code Online (Sandbox Code Playgroud)

Nar*_*arf 12

您存储序列化数据的数据库字段(可能)存在大小限制,超出该字符串的长度 - 基本上,您的数据已损坏.