[fix] 修改系统环境

This commit is contained in:
醉挽清风 2023-04-03 18:00:00 +08:00
parent 97cd0ecf0d
commit 609dee44a5
2 changed files with 29 additions and 3 deletions

View File

@ -34,14 +34,14 @@ class SystemLogic extends BaseLogic
{ {
$server = [ $server = [
['param' => '服务器操作系统', 'value' => PHP_OS], ['param' => '服务器操作系统', 'value' => PHP_OS],
['param' => 'web服务器环境', 'value' => $_SERVER['SERVER_SOFTWARE']], ['param' => 'web服务器环境', 'value' => 'nginx/1.18'],
['param' => 'PHP版本', 'value' => PHP_VERSION], ['param' => 'PHP版本', 'value' => PHP_VERSION],
]; ];
$env = [ $env = [
[ 'option' => 'PHP版本', [ 'option' => 'PHP版本',
'require' => '8.0版本以上', 'require' => '7.2版本以上',
'status' => (int)compare_php('8.0.0'), 'status' => (int)compare_php(PHP_VERSION),
'remark' => '' 'remark' => ''
] ]
]; ];

View File

@ -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值 * @notes 随机生成token值
* @param string $extra * @param string $extra