<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: PHP CLI Colors – PHP Class Command Line Colors (bash)</title>
	<atom:link href="http://www.if-not-true-then-false.com/2010/php-class-for-coloring-php-command-line-cli-scripts-output-php-output-colorizing-using-bash-shell-colors/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.if-not-true-then-false.com/2010/php-class-for-coloring-php-command-line-cli-scripts-output-php-output-colorizing-using-bash-shell-colors/</link>
	<description>If !1 0 &#124; Linux and Development Guides</description>
	<lastBuildDate>Fri, 10 Feb 2012 20:00:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<a href="http://www.if-not-true-then-false.com/hp/fitting.php" style="padding:0;margin:0;" rel="nofollow"><!-- service --></a>	<item>
		<title>By: JR</title>
		<link>http://www.if-not-true-then-false.com/2010/php-class-for-coloring-php-command-line-cli-scripts-output-php-output-colorizing-using-bash-shell-colors/comment-page-1/#comment-19713</link>
		<dc:creator>JR</dc:creator>
		<pubDate>Wed, 26 Oct 2011 08:53:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.if-not-true-then-false.com/?p=613#comment-19713</guid>
		<description>Hi Jesse,

I checked your static function and idea is nice, but it lacks a few things.

1. It&#039;s working only with PHP &gt;= 5.3.0
2. It throws a PHP Notice if background color is not set
3. You have to call some totally random static method if you don&#039;t want any foreground color

Static and much more compatible with earlier PHP versions example could be following:
&lt;pre lang=&quot;php&quot;&gt;
&lt;?php

     	class ColorCLI {
                static $foreground_colors = array(
                        &#039;black&#039;        =&gt; &#039;0;30&#039;, &#039;dark_gray&#039;    =&gt; &#039;1;30&#039;,
                        &#039;blue&#039;         =&gt; &#039;0;34&#039;, &#039;light_blue&#039;   =&gt; &#039;1;34&#039;,
                        &#039;green&#039;        =&gt; &#039;0;32&#039;, &#039;light_green&#039;  =&gt; &#039;1;32&#039;,
                        &#039;cyan&#039;         =&gt; &#039;0;36&#039;, &#039;light_cyan&#039;   =&gt; &#039;1;36&#039;,
                        &#039;red&#039;          =&gt; &#039;0;31&#039;, &#039;light_red&#039;    =&gt; &#039;1;31&#039;,
                        &#039;purple&#039;       =&gt; &#039;0;35&#039;, &#039;light_purple&#039; =&gt; &#039;1;35&#039;,
                        &#039;brown&#039;        =&gt; &#039;0;33&#039;, &#039;yellow&#039;	 =&gt; &#039;1;33&#039;,
                        &#039;light_gray&#039;   =&gt; &#039;0;37&#039;, &#039;white&#039;        =&gt; &#039;1;37&#039;,
                );

                static $background_colors = array(
                        &#039;black&#039;        =&gt; &#039;40&#039;, &#039;red&#039;          =&gt; &#039;41&#039;,
                        &#039;green&#039;        =&gt; &#039;42&#039;, &#039;yellow&#039;       =&gt; &#039;43&#039;,
                        &#039;blue&#039;         =&gt; &#039;44&#039;, &#039;magenta&#039;      =&gt; &#039;45&#039;,
                        &#039;cyan&#039;         =&gt; &#039;46&#039;, &#039;light_gray&#039;   =&gt; &#039;47&#039;,
                );

                // Returns colored string
                public static function getColoredString($string, $foreground_color = null, $background_color = null) {
                        $colored_string = &quot;&quot;;

                        // Check if given foreground color found
                        if ( isset(self::$foreground_colors[$foreground_color]) ) {
                                $colored_string .= &quot;\033[&quot; . self::$foreground_colors[$foreground_color] . &quot;m&quot;;
                        }
                        // Check if given background color found
                        if ( isset(self::$background_colors[$background_color]) ) {
                                $colored_string .= &quot;\033[&quot; . self::$background_colors[$background_color] . &quot;m&quot;;
                        }

                        // Add string and end coloring
                        $colored_string .=  $string . &quot;\033[0m&quot;;

                        return $colored_string;
                }

                // Returns all foreground color names
                public static function getForegroundColors() {
                        return array_keys(self::$foreground_colors);
                }

                // Returns all background color names
                public static function getBackgroundColors() {
                        return array_keys(self::$background_colors);
                }
        }
&lt;/pre&gt;

Example usage:
&lt;pre lang=&quot;php&quot;&gt;
echo ColorCLI::getColoredString(&#039;Test&#039;);
echo ColorCLI::getColoredString(&#039;Test&#039;, &#039;blue&#039;);
echo ColorCLI::getColoredString(&#039;Test&#039;, null, &#039;blue&#039;);

print_r(ColorCLI::getForegroundColors());
print_r(ColorCLI::getBackgroundColors());
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Hi Jesse,</p>
<p>I checked your static function and idea is nice, but it lacks a few things.</p>
<p>1. It&#8217;s working only with PHP >= 5.3.0<br />
2. It throws a PHP Notice if background color is not set<br />
3. You have to call some totally random static method if you don&#8217;t want any foreground color</p>
<p>Static and much more compatible with earlier PHP versions example could be following:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="color:#D8D8D8;"><span style="color: #FFF; font-weight:bold;">&lt;?php</span>
&nbsp;
     	<span style="color: #FFF; font-weight:bold;">class</span> ColorCLI <span style=" color: #FFF;">&#123;</span>
                static <span style="color: #729fcf;">$foreground_colors</span> <span style=" color: #FFF;">=</span> <span style="color: #d3d7cf">array</span><span style=" color: #FFF;">&#40;</span>
                        <span style="color: #FFC600;">'black'</span>        <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'0;30'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'dark_gray'</span>    <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'1;30'</span><span style=" color: #FFF;">,</span>
                        <span style="color: #FFC600;">'blue'</span>         <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'0;34'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'light_blue'</span>   <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'1;34'</span><span style=" color: #FFF;">,</span>
                        <span style="color: #FFC600;">'green'</span>        <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'0;32'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'light_green'</span>  <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'1;32'</span><span style=" color: #FFF;">,</span>
                        <span style="color: #FFC600;">'cyan'</span>         <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'0;36'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'light_cyan'</span>   <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'1;36'</span><span style=" color: #FFF;">,</span>
                        <span style="color: #FFC600;">'red'</span>          <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'0;31'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'light_red'</span>    <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'1;31'</span><span style=" color: #FFF;">,</span>
                        <span style="color: #FFC600;">'purple'</span>       <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'0;35'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'light_purple'</span> <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'1;35'</span><span style=" color: #FFF;">,</span>
                        <span style="color: #FFC600;">'brown'</span>        <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'0;33'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'yellow'</span>	 <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'1;33'</span><span style=" color: #FFF;">,</span>
                        <span style="color: #FFC600;">'light_gray'</span>   <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'0;37'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'white'</span>        <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'1;37'</span><span style=" color: #FFF;">,</span>
                <span style=" color: #FFF;">&#41;</span><span style=" color: #FFF;">;</span>
&nbsp;
                static <span style="color: #729fcf;">$background_colors</span> <span style=" color: #FFF;">=</span> <span style="color: #d3d7cf">array</span><span style=" color: #FFF;">&#40;</span>
                        <span style="color: #FFC600;">'black'</span>        <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'40'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'red'</span>          <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'41'</span><span style=" color: #FFF;">,</span>
                        <span style="color: #FFC600;">'green'</span>        <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'42'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'yellow'</span>       <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'43'</span><span style=" color: #FFF;">,</span>
                        <span style="color: #FFC600;">'blue'</span>         <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'44'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'magenta'</span>      <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'45'</span><span style=" color: #FFF;">,</span>
                        <span style="color: #FFC600;">'cyan'</span>         <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'46'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'light_gray'</span>   <span style=" color: #FFF;">=&gt;</span> <span style="color: #FFC600;">'47'</span><span style=" color: #FFF;">,</span>
                <span style=" color: #FFF;">&#41;</span><span style=" color: #FFF;">;</span>
&nbsp;
                <span style=" color: #C7DD0C">// Returns colored string</span>
                <span style="color: #FFF; font-weight:bold;">public</span> static <span style="color: #FFF; font-weight:bold;">function</span> getColoredString<span style=" color: #FFF;">&#40;</span><span style="color: #729fcf;">$string</span><span style=" color: #FFF;">,</span> <span style="color: #729fcf;">$foreground_color</span> <span style=" color: #FFF;">=</span> <span style="color: #FFF;">null</span><span style=" color: #FFF;">,</span> <span style="color: #729fcf;">$background_color</span> <span style=" color: #FFF;">=</span> <span style="color: #FFF;">null</span><span style=" color: #FFF;">&#41;</span> <span style=" color: #FFF;">&#123;</span>
                        <span style="color: #729fcf;">$colored_string</span> <span style=" color: #FFF;">=</span> <span style="color: #FFC600;">&quot;&quot;</span><span style=" color: #FFF;">;</span>
&nbsp;
                        <span style=" color: #C7DD0C">// Check if given foreground color found</span>
                        <span style="color: #FFF; font-weight:bold;">if</span> <span style=" color: #FFF;">&#40;</span> <span style="color: #d3d7cf">isset</span><span style=" color: #FFF;">&#40;</span><span style="color: #FFF; font-weight:bold;">self</span><span style=" color: #FFF;">::</span><span style="color: #729fcf;">$foreground_colors</span><span style=" color: #FFF;">&#91;</span><span style="color: #729fcf;">$foreground_color</span><span style=" color: #FFF;">&#93;</span><span style=" color: #FFF;">&#41;</span> <span style=" color: #FFF;">&#41;</span> <span style=" color: #FFF;">&#123;</span>
                                <span style="color: #729fcf;">$colored_string</span> <span style=" color: #FFF;">.=</span> <span style="color: #FFC600;">&quot;<span style="color: #ce5c00">\033</span>[&quot;</span> <span style=" color: #FFF;">.</span> <span style="color: #FFF; font-weight:bold;">self</span><span style=" color: #FFF;">::</span><span style="color: #729fcf;">$foreground_colors</span><span style=" color: #FFF;">&#91;</span><span style="color: #729fcf;">$foreground_color</span><span style=" color: #FFF;">&#93;</span> <span style=" color: #FFF;">.</span> <span style="color: #FFC600;">&quot;m&quot;</span><span style=" color: #FFF;">;</span>
                        <span style=" color: #FFF;">&#125;</span>
                        <span style=" color: #C7DD0C">// Check if given background color found</span>
                        <span style="color: #FFF; font-weight:bold;">if</span> <span style=" color: #FFF;">&#40;</span> <span style="color: #d3d7cf">isset</span><span style=" color: #FFF;">&#40;</span><span style="color: #FFF; font-weight:bold;">self</span><span style=" color: #FFF;">::</span><span style="color: #729fcf;">$background_colors</span><span style=" color: #FFF;">&#91;</span><span style="color: #729fcf;">$background_color</span><span style=" color: #FFF;">&#93;</span><span style=" color: #FFF;">&#41;</span> <span style=" color: #FFF;">&#41;</span> <span style=" color: #FFF;">&#123;</span>
                                <span style="color: #729fcf;">$colored_string</span> <span style=" color: #FFF;">.=</span> <span style="color: #FFC600;">&quot;<span style="color: #ce5c00">\033</span>[&quot;</span> <span style=" color: #FFF;">.</span> <span style="color: #FFF; font-weight:bold;">self</span><span style=" color: #FFF;">::</span><span style="color: #729fcf;">$background_colors</span><span style=" color: #FFF;">&#91;</span><span style="color: #729fcf;">$background_color</span><span style=" color: #FFF;">&#93;</span> <span style=" color: #FFF;">.</span> <span style="color: #FFC600;">&quot;m&quot;</span><span style=" color: #FFF;">;</span>
                        <span style=" color: #FFF;">&#125;</span>
&nbsp;
                        <span style=" color: #C7DD0C">// Add string and end coloring</span>
                        <span style="color: #729fcf;">$colored_string</span> <span style=" color: #FFF;">.=</span>  <span style="color: #729fcf;">$string</span> <span style=" color: #FFF;">.</span> <span style="color: #FFC600;">&quot;<span style="color: #ce5c00">\033</span>[0m&quot;</span><span style=" color: #FFF;">;</span>
&nbsp;
                        <span style="color: #FFF; font-weight:bold;">return</span> <span style="color: #729fcf;">$colored_string</span><span style=" color: #FFF;">;</span>
                <span style=" color: #FFF;">&#125;</span>
&nbsp;
                <span style=" color: #C7DD0C">// Returns all foreground color names</span>
                <span style="color: #FFF; font-weight:bold;">public</span> static <span style="color: #FFF; font-weight:bold;">function</span> getForegroundColors<span style=" color: #FFF;">&#40;</span><span style=" color: #FFF;">&#41;</span> <span style=" color: #FFF;">&#123;</span>
                        <span style="color: #FFF; font-weight:bold;">return</span> <span style="color: #d3d7cf">array_keys</span><span style=" color: #FFF;">&#40;</span><span style="color: #FFF; font-weight:bold;">self</span><span style=" color: #FFF;">::</span><span style="color: #729fcf;">$foreground_colors</span><span style=" color: #FFF;">&#41;</span><span style=" color: #FFF;">;</span>
                <span style=" color: #FFF;">&#125;</span>
&nbsp;
                <span style=" color: #C7DD0C">// Returns all background color names</span>
                <span style="color: #FFF; font-weight:bold;">public</span> static <span style="color: #FFF; font-weight:bold;">function</span> getBackgroundColors<span style=" color: #FFF;">&#40;</span><span style=" color: #FFF;">&#41;</span> <span style=" color: #FFF;">&#123;</span>
                        <span style="color: #FFF; font-weight:bold;">return</span> <span style="color: #d3d7cf">array_keys</span><span style=" color: #FFF;">&#40;</span><span style="color: #FFF; font-weight:bold;">self</span><span style=" color: #FFF;">::</span><span style="color: #729fcf;">$background_colors</span><span style=" color: #FFF;">&#41;</span><span style=" color: #FFF;">;</span>
                <span style=" color: #FFF;">&#125;</span>
        <span style=" color: #FFF;">&#125;</span></pre></div></div>

<p>Example usage:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="color:#D8D8D8;"><span style="color: #FFF; font-weight:bold;">echo</span> ColorCLI<span style=" color: #FFF;">::</span><span style="color: #BED6FF;">getColoredString</span><span style=" color: #FFF;">&#40;</span><span style="color: #FFC600;">'Test'</span><span style=" color: #FFF;">&#41;</span><span style=" color: #FFF;">;</span>
<span style="color: #FFF; font-weight:bold;">echo</span> ColorCLI<span style=" color: #FFF;">::</span><span style="color: #BED6FF;">getColoredString</span><span style=" color: #FFF;">&#40;</span><span style="color: #FFC600;">'Test'</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'blue'</span><span style=" color: #FFF;">&#41;</span><span style=" color: #FFF;">;</span>
<span style="color: #FFF; font-weight:bold;">echo</span> ColorCLI<span style=" color: #FFF;">::</span><span style="color: #BED6FF;">getColoredString</span><span style=" color: #FFF;">&#40;</span><span style="color: #FFC600;">'Test'</span><span style=" color: #FFF;">,</span> <span style="color: #FFF;">null</span><span style=" color: #FFF;">,</span> <span style="color: #FFC600;">'blue'</span><span style=" color: #FFF;">&#41;</span><span style=" color: #FFF;">;</span>
&nbsp;
<span style="color: #d3d7cf">print_r</span><span style=" color: #FFF;">&#40;</span>ColorCLI<span style=" color: #FFF;">::</span><span style="color: #BED6FF;">getForegroundColors</span><span style=" color: #FFF;">&#40;</span><span style=" color: #FFF;">&#41;</span><span style=" color: #FFF;">&#41;</span><span style=" color: #FFF;">;</span>
<span style="color: #d3d7cf">print_r</span><span style=" color: #FFF;">&#40;</span>ColorCLI<span style=" color: #FFF;">::</span><span style="color: #BED6FF;">getBackgroundColors</span><span style=" color: #FFF;">&#40;</span><span style=" color: #FFF;">&#41;</span><span style=" color: #FFF;">&#41;</span><span style=" color: #FFF;">;</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse Donat</title>
		<link>http://www.if-not-true-then-false.com/2010/php-class-for-coloring-php-command-line-cli-scripts-output-php-output-colorizing-using-bash-shell-colors/comment-page-1/#comment-19711</link>
		<dc:creator>Jesse Donat</dc:creator>
		<pubDate>Wed, 26 Oct 2011 03:37:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.if-not-true-then-false.com/?p=613#comment-19711</guid>
		<description>I found your version a little over complicated so I simplified it and saved it as a Github Gist here - https://gist.github.com/1315354

There was no real need to require an instance as there are no local members being modified - so its purposely suited to just being accessed from the static state.</description>
		<content:encoded><![CDATA[<p>I found your version a little over complicated so I simplified it and saved it as a Github Gist here &#8211; <a href="https://gist.github.com/1315354" rel="nofollow">https://gist.github.com/1315354</a></p>
<p>There was no real need to require an instance as there are no local members being modified &#8211; so its purposely suited to just being accessed from the static state.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Harris</title>
		<link>http://www.if-not-true-then-false.com/2010/php-class-for-coloring-php-command-line-cli-scripts-output-php-output-colorizing-using-bash-shell-colors/comment-page-1/#comment-18169</link>
		<dc:creator>Ben Harris</dc:creator>
		<pubDate>Tue, 07 Jun 2011 11:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.if-not-true-then-false.com/?p=613#comment-18169</guid>
		<description>Thanks for this. Like @Scriptster, I&#039;m going to use it for important debug messages/output. I&#039;ve re-written it a bit to shorten the syntax, so to make the text red for example, I use

$c = new Colors();
$c-&gt;red(&quot;I&#039;m red&quot;);
$c-&gt;green(&quot;I&#039;m green&quot;);

Cheers,

Ben</description>
		<content:encoded><![CDATA[<p>Thanks for this. Like @Scriptster, I&#8217;m going to use it for important debug messages/output. I&#8217;ve re-written it a bit to shorten the syntax, so to make the text red for example, I use</p>
<p>$c = new Colors();<br />
$c-&gt;red(&#8220;I&#8217;m red&#8221;);<br />
$c-&gt;green(&#8220;I&#8217;m green&#8221;);</p>
<p>Cheers,</p>
<p>Ben</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Ayvazyan</title>
		<link>http://www.if-not-true-then-false.com/2010/php-class-for-coloring-php-command-line-cli-scripts-output-php-output-colorizing-using-bash-shell-colors/comment-page-1/#comment-15596</link>
		<dc:creator>David Ayvazyan</dc:creator>
		<pubDate>Wed, 27 Oct 2010 15:18:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.if-not-true-then-false.com/?p=613#comment-15596</guid>
		<description>BEST JOB !!!! Great thanks !!!!</description>
		<content:encoded><![CDATA[<p>BEST JOB !!!! Great thanks !!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scriptster</title>
		<link>http://www.if-not-true-then-false.com/2010/php-class-for-coloring-php-command-line-cli-scripts-output-php-output-colorizing-using-bash-shell-colors/comment-page-1/#comment-4601</link>
		<dc:creator>Scriptster</dc:creator>
		<pubDate>Wed, 21 Jul 2010 18:45:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.if-not-true-then-false.com/?p=613#comment-4601</guid>
		<description>Thank you for the tip! I admit it never occurred to me to color command line output but you got me thinking now! Many times you have to stare at multi-line outputs of some long running scripts and it&#039;s oh so easy to miss an important line with some sort of an error or warning message in it. It would stand out so much more if it&#039;s, say, red or black on yellow background. I think I&#039;m going to give it a try now.
Thanks!</description>
		<content:encoded><![CDATA[<p>Thank you for the tip! I admit it never occurred to me to color command line output but you got me thinking now! Many times you have to stare at multi-line outputs of some long running scripts and it&#8217;s oh so easy to miss an important line with some sort of an error or warning message in it. It would stand out so much more if it&#8217;s, say, red or black on yellow background. I think I&#8217;m going to give it a try now.<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: v-nessa.net &#187; Post Archive &#187; Command Line PHP: Part 3</title>
		<link>http://www.if-not-true-then-false.com/2010/php-class-for-coloring-php-command-line-cli-scripts-output-php-output-colorizing-using-bash-shell-colors/comment-page-1/#comment-1983</link>
		<dc:creator>v-nessa.net &#187; Post Archive &#187; Command Line PHP: Part 3</dc:creator>
		<pubDate>Tue, 25 May 2010 14:39:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.if-not-true-then-false.com/?p=613#comment-1983</guid>
		<description>[...] &#8211; Simple System Maintenance with PHP-CLI Command Line PHP (IBM) Running Daemons in PHP PHP Class for Coloring Command Line Output PHP Command Line Progress Bar   Share and [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8211; Simple System Maintenance with PHP-CLI Command Line PHP (IBM) Running Daemons in PHP PHP Class for Coloring Command Line Output PHP Command Line Progress Bar   Share and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PHP Class for Coloring PHP Command Line (CLI) Scripts Output – PHP &#8230; &#124; Coder Online</title>
		<link>http://www.if-not-true-then-false.com/2010/php-class-for-coloring-php-command-line-cli-scripts-output-php-output-colorizing-using-bash-shell-colors/comment-page-1/#comment-21</link>
		<dc:creator>PHP Class for Coloring PHP Command Line (CLI) Scripts Output – PHP &#8230; &#124; Coder Online</dc:creator>
		<pubDate>Wed, 13 Jan 2010 23:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.if-not-true-then-false.com/?p=613#comment-21</guid>
		<description>[...] View post: PHP Class for Coloring PHP Command Line (CLI) Scripts Output – PHP &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] View post: PHP Class for Coloring PHP Command Line (CLI) Scripts Output – PHP &#8230; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  www.if-not-true-then-false.com/2010/php-class-for-coloring-php-command-line-cli-scripts-output-php-output-colorizing-using-bash-shell-colors/feed/ ) in 0.23119 seconds, on Feb 11th, 2012 at 8:15 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 11th, 2012 at 9:15 am UTC -->
