当前位置:Gxlcms > PHP教程 > PHP得到当前GIT分支的代码

PHP得到当前GIT分支的代码

时间:2021-07-01 10:21:17 帮助过:34人阅读

由于研发,测试,生产环境不同,反馈问题经常不能正确定位环境,可在WEB界面的显著位置中显示当前的环境

public static function getGitinfo()

{
if (\App::environment() == "product") {
$host = '生产';
} elseif (\App::environment() == "testing") {
$host = '测试';
} else {
$host = '本机';
}
//获取分支名
$branch = @file_get_contents(base_path() . '/.git/HEAD');
if (!empty($branch)) {
$branch = trim($branch);
$i = strripos($branch, '/');
$branch = substr($branch, $i + 1);
}
return $host . "【" . $branch . "】";

}

//非生产才显示

@if (!App::environment()=='production' )

@endif

以上就介绍了 PHP得到当前GIT分支的代码,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行