thinkphp5 unserialize(): Error at offset 0 of 932 bytes
ThinkPHP5框架
在thinkphp\library\think\cache\driver\Flie.php中,
找到下面一句 大约120行左右
$content = substr($content, 32)
先修32 为大写的数字
$content = substr($content, 32000);
正常显示后可改回原来的值即可。
ThinkPHP5框架
在thinkphp\library\think\cache\driver\Flie.php中,
找到下面一句 大约120行左右
$content = substr($content, 32)
先修32 为大写的数字
$content = substr($content, 32000);
正常显示后可改回原来的值即可。