提交 e6f83e32 编写于 作者: W wwccss

* judge the env var of console under windows.

上级 56a2af1e
......@@ -861,7 +861,7 @@ class zentaotest
}
/**
* Print a string in color.
* Print a string in color in a linux os or in ansicon console in windows.
*
* @param string $string
* @param string $color
......@@ -870,7 +870,12 @@ class zentaotest
*/
public function colorString($string, $color)
{
if($this->os == 'win') return $string;
if($this->os == 'win')
{
$console = getenv('console');
if($console !== 'ansicon') return $string;
}
return COLOR_PREFIX . $color . $string . COLOR_POSTFIX;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册