如何修复偏移量的反序列化错误


How to fix unserialize error at offset

我收到此错误,有人知道如何解决它吗?

 Notice: unserialize(): Error at offset 65533 of 65535 bytes in /home/corrchil/public_html/index.php on line 74

它现在位于每个页面的顶部,并在我们安装插件后开始在页面上看到,此后我们删除了插件以及所有可以编辑的内容。

https://www.corrchilled.co.uk/alpine-prague-68-super-slim-remote-multideck.html

序列化数据后可以尝试 base64_encode():

$serialized = base64_encode(serialize($datas)));

然后:

$unserialized = unserialize(base64_decode($serialized));