php cli 输出 颜色,PHP 命令行输出彩色 php-cli-color

软件介绍

一个简单的 PHP 命令行 cli 输出彩色的类库

安装

composer require wujunze/php-cli-color '~1.0'

使用

getColoredString("Testing Colors class, this is purple string on yellow background.", "purple", "yellow") . PHP_EOL;

echo $colors->getColoredString("Testing Colors class, this is blue string on light gray background.", "blue", "light_gray") . PHP_EOL;

echo $colors->getColoredString("Testing Colors class, this is red string on black background.", "red", "black") . PHP_EOL;

echo $colors->getColoredString("Testing Colors class, this is cyan string on green background.", "cyan", "green") . PHP_EOL;

echo $colors->getColoredString("Testing Colors class, this is cyan string on default background.", "cyan") . PHP_EOL;

echo $colors->getColoredString("Testing Colors class, this is default string on cyan background.", null, "cyan") . PHP_EOL;

结果

php cli 输出 颜色,PHP 命令行输出彩色 php-cli-color_第1张图片

为你推荐:

你可能感兴趣的:(php,cli,输出,颜色)