Sophie

Sophie

distrib > Fedora > 20 > x86_64 > by-pkgid > 221414fdcf77580eade918b7cb58086f > files > 6

php-pear-console-color2-0.1.2-2.fc20.noarch.rpm

<?php
require 'Console/Color2.php';

$color = new Console_Color2();

// Let's add a little color to the world
// %n resets the color so the following stuff doesn't get messed up
print $color->convert("%bHello World!%n\n"); 
// Colorless mode, in case you need to strip colorcodes off a text
print $color->convert("%rHello World!%n\n", false);
// The uppercase version makes a colorcode bold/bright
print $color->convert("%BHello World!%n\n");
// To print a %, you use %%
print $color->convert("3 out of 4 people make up about %r75%% %nof the " 
                            ."world population.\n");
// Or you can use the escape() method.
print $color->convert("%y"
     .$color->escape('If you feel that you do everying wrong, be random'
                           .', there\'s a 50% Chance of making the right '
                           .'decision.')."%n\n");