Skip to content

Instantly share code, notes, and snippets.

@Saberko
Last active November 16, 2015 08:18
Show Gist options
  • Save Saberko/adba0690e2c9f9e0f46d to your computer and use it in GitHub Desktop.
Save Saberko/adba0690e2c9f9e0f46d to your computer and use it in GitHub Desktop.
php控制台输出带颜色信息
<?php
function out($text, $status) {
$str = '';
switch($status) {
case 'SUCCESS':
$str = "[42m";
break;
case 'FAIL':
$str = "[41m";
break;
case 'WARNING':
$str = "[43m";
break;
case "NOTE":
$str = "[44m";
break;
default:
throw new Exception('Invalid status: ' . $status);
}
echo chr(27) . $str . $text . chr(27) . "[0m" . PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment