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