Browse Source

update: fix opcache return null

Tokumeikoi 4 years ago
parent
commit
732edcad57
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Controllers/Admin/ConfigController.php

+ 1 - 1
app/Http/Controllers/Admin/ConfigController.php

@@ -152,7 +152,7 @@ class ConfigController extends Controller
             abort(500, '修改失败');
         }
         if (function_exists('opcache_reset')) {
-            if (!opcache_reset()) {
+            if (opcache_reset() === false) {
                 abort(500, '缓存清除失败,请卸载或检查opcache配置状态');
             }
         }