opcache: fix opcache issue

This commit is contained in:
Tokumeikoi 2020-07-25 00:19:13 +08:00
parent f4b6f0aefe
commit 43193386bb

View File

@ -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
]);