吴昊天 2 лет назад
Родитель
Сommit
579e520aa3
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      crmeb/vendor/topthink/framework/src/think/cache/driver/File.php

+ 1 - 1
crmeb/vendor/topthink/framework/src/think/cache/driver/File.php

@@ -108,7 +108,7 @@ class File extends Driver
                 $content = gzuncompress($content);
             }
 
-            return ['content' => $content, 'expire' => $expire];
+            return ['content' => (string)$content, 'expire' => $expire];
         }
     }