Browse Source

opcache: fix opcache issue

Tokumeikoi 4 years ago
parent
commit
43193386bb
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

@@ -138,10 +138,10 @@ class ConfigController extends Controller
         if (!\File::put(base_path() . '/config/v2board.php', "<?php\n return $data ;")) {
             abort(500, '修改失败');
         }
-        \Artisan::call('config:cache');
         if (function_exists('opcache')) {
             opcache_reset();
         }
+        \Artisan::call('config:cache');
         return response([
             'data' => true
         ]);