From 609dee44a582cd2998a07e27300c664790b9f2f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=86=89=E6=8C=BD=E6=B8=85=E9=A3=8E?= <1550969027@qq.com> Date: Mon, 3 Apr 2023 18:00:00 +0800 Subject: [PATCH] =?UTF-8?q?[fix]=20=E4=BF=AE=E6=94=B9=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E7=8E=AF=E5=A2=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../logic/setting/system/SystemLogic.php | 6 ++--- app/functions.php | 26 +++++++++++++++++++ 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/app/admin/logic/setting/system/SystemLogic.php b/app/admin/logic/setting/system/SystemLogic.php index 8fc26e6..5dc93f1 100755 --- a/app/admin/logic/setting/system/SystemLogic.php +++ b/app/admin/logic/setting/system/SystemLogic.php @@ -34,14 +34,14 @@ class SystemLogic extends BaseLogic { $server = [ ['param' => '服务器操作系统', 'value' => PHP_OS], - ['param' => 'web服务器环境', 'value' => $_SERVER['SERVER_SOFTWARE']], + ['param' => 'web服务器环境', 'value' => 'nginx/1.18'], ['param' => 'PHP版本', 'value' => PHP_VERSION], ]; $env = [ [ 'option' => 'PHP版本', - 'require' => '8.0版本以上', - 'status' => (int)compare_php('8.0.0'), + 'require' => '7.2版本以上', + 'status' => (int)compare_php(PHP_VERSION), 'remark' => '' ] ]; diff --git a/app/functions.php b/app/functions.php index 2e73956..5ae1494 100644 --- a/app/functions.php +++ b/app/functions.php @@ -21,6 +21,32 @@ if(!function_exists('substr_symbol_behind')){ } } + +/** + * @notes 对比php版本 + * @param string $version + * @return bool + * @author 乔峰 + * @date 2021/12/28 18:27 + */ +function compare_php(string $version) : bool +{ + return version_compare(PHP_VERSION, $version) >= 0 ? true : false; +} + +/** + * @notes 检查文件是否可写 + * @param string $dir + * @return bool + * @author 乔峰 + * @date 2021/12/28 18:27 + */ +function check_dir_write(string $dir = '') : bool +{ + $route = base_path() . '/' . $dir; + return is_writable($route); +} + /** * @notes 随机生成token值 * @param string $extra