使用ThinkPHP框架,git拉取代码或者执行命令时报错unserialize(): Error at offset 0 of 9 bytes
解决:
在thinkphp\library\think\cache\driver\Flie.php中,将
$content = substr($content, 32)
改为
$content = substr($content, 17071);
正常显示后可改回原来的值
使用ThinkPHP框架,git拉取代码或者执行命令时报错unserialize(): Error at offset 0 of 9 bytes
解决:
在thinkphp\library\think\cache\driver\Flie.php中,将
$content = substr($content, 32)
改为
$content = substr($content, 17071);
正常显示后可改回原来的值