当前位置: 代码迷 >> 综合 >> ThinkPHP unserialize(): Error at offset 0 of 9 bytes
  详细解决方案

ThinkPHP unserialize(): Error at offset 0 of 9 bytes

热度:65   发布时间:2023-12-27 01:58:56.0

使用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);

正常显示后可改回原来的值

  相关解决方案