martin-pettersson/chalk
最新稳定版本:0.1.3
Composer 安装命令:
composer require martin-pettersson/chalk
包简介
A tool to style terminal output
README 文档
README
Inspired by Chalk this is a tool for PHP to style terminal output.
Installation
- Through composer
-
Require chalk as a dependency:
composer require martin-pettersson/chalk
Include the composer autoload file:require_once 'vendor/autoload.php' - Manually
- Download/clone the repo
Usage
Quick Examples
You can copy this into a .php file and test it out.
<?php require_once 'vendor/autoload.php'; use Chalk\Chalk; use Chalk\Style; use Chalk\Color; use Chalk\BackgroundColor; // use the style method to style the text echo Chalk::style('This text is green', Color::GREEN) . PHP_EOL; // convenience methods are available for colors (case insensitive) echo Chalk::green('This text is also green') . PHP_EOL; echo Chalk::Red('This text is red') . PHP_EOL; // use a style object to compose styles $style = new Style([Color::RED, BackgroundColor::GREEN, Style::UNDERLINED]); echo Chalk::style('This text is red with green background', $style) . PHP_EOL; // use the parse method for more advanced compositions echo Chalk::parse('This text is {green}, {yellow}, {red}, {blue} and {something else}', [ Color::GREEN, Color::YELLOW, Color::RED, Color::BLUE, $style ]) . PHP_EOL; // you can nest styles // note that the text at the end of the string is still green even after the background styling is reset echo Chalk::Green('This text has some ' . Chalk::style('nested', BackgroundColor::WHITE) . ' styling') . PHP_EOL;
Example output:
Methods
Chalk::style(string $string, mixed $style)
Style the string by passing in either a Color/BackgroundColor/Style or a composed style object.
Chalk::parse(string $string, array $styles)
For more advanced styling use the parse method to style specific parts of the string.
Use "{}" tags to target part of the string and pass in an array of styles. The styles matches the index of the found tags.
Convenience methods
If you use Chalk::{COLOR}($string) with any available color (case insensitive) it will conveniently map to Chalk::style($string, {COLOR}), eg. Chalk::Red($string) === Chalk::style($string, Color::RED)
Available Styles
Colors
- Color::NONE (default)
- Color::BLACK
- Color::RED
- Color::GREEN
- Color::YELLOW
- Color::BLUE
- Color::MAGENTA
- Color::CYAN
- Color::LIGHT_GRAY
- Color::DARK_GRAY
- Color::LIGHT_RED
- Color::LIGHT_GREEN
- Color::LIGHT_YELLOW
- Color::LIGHT_BLUE
- Color::LIGHT_MAGENTA
- Color::LIGHT_CYAN
- Color::WHITE
Background Colors
- BackgroundColor::NONE (default)
- BackgroundColor::BLACK
- BackgroundColor::RED
- BackgroundColor::GREEN
- BackgroundColor::YELLOW
- BackgroundColor::BLUE
- BackgroundColor::MAGENTA
- BackgroundColor::CYAN
- BackgroundColor::LIGHT_GRAY
- BackgroundColor::DARK_GRAY
- BackgroundColor::LIGHT_RED
- BackgroundColor::LIGHT_GREEN
- BackgroundColor::LIGHT_YELLOW
- BackgroundColor::LIGHT_BLUE
- BackgroundColor::LIGHT_MAGENTA
- BackgroundColor::LIGHT_CYAN
- BackgroundColor::WHITE
Styles
- Style::BOLD
- Style::DIM
- Style::UNDERLINED
- Style::BLINK
- Style::INVERTED
- Style::HIDDEN
统计信息
- 总下载量: 10.02k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 10
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-10-01
