Download the PHP package twoixter/ansicolors without Composer
On this page you can find all versions of the php package twoixter/ansicolors. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package ansicolors
ansi::[colors] for PHP CLI
ansi::[colors] is a simple library for PHP CLI applications. Made for simplicity, it avoids complicated methods for ANSI code output.
By complicated methods I mean something like:
You get the point. I want to avoid a "FactorySingletonGenerator" to just print a red "E".
Installation
Just use Composer. Add this to your composer.json
:
Or you just can download the lib/ansi.php
file to your own source directory. Require it and you're ready to go.
Usage
ansi:[colors] uses a global Class. You don't need to instantiate it, just use it's static methods. If the name ansi
in lower case collides with some other global class of your own, please rename your class. :-)
Example usage without arguments:
Note that you need to ansi::reset()
if you don't use arguments or your text will be red forever, even when you exit the PHP script.
Alternatively, you can put some strings inside the method:
The string this is red
will be printed in red and automatically reset to the previous console color.
Available colors
Available colors are the usual suspects: black
, red
, green
, yellow
, blue
, magenta
, cyan
and white
.
Use then as static methods to the ansi
class:
...and so on. They return a string containing the ANSI escape sequences, you must output it yourself, nothing is automatically echoed to the console.
Uppercase and lowercase methods
The above eight color names are lowercase. It is on purpose. Lower case name colors are dull, the brighter ones are UPPERCASE or CamelCased. Example:
Background colors
You can not change the background color on its own, you must add also a foreground color using the following form:
The string Yep!
will use a bright red foreground color over a white background. Background colors are all dull, Red_on_White
has no effect, even when using all uppercase.
You can use all combinations of colors for foreground and background. Examples:
Named colors
ansi::[colors] supports color aliasing as named colors. Use ansi::define("name", "color");
to create a new named color.
Example:
Support for pipes
ansi:[colors] is smart enough to disable itself when piped. So you can do things like:
And you can be sure no ANSI codes will mangle your output. Perfect for logging to file for example, or using less
to paginate.
License
Licensed under the MIT license -- http://opensource.org/licenses/MIT
If you like ansi::[colors], please send some cheers to my Twitter at @twoixter. If you find some bugs, please fork and send me a pull request, I'm open to suggestions except changing the class name ansi
to uppercase Ansi
... (Just kidding) :-)