<?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"
	>
<channel>
	<title>Comments on: PHP Manual CLI style</title>
	<atom:link href="http://www.sitepoint.com/blogs/2004/11/01/php-manual-cli-style/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sitepoint.com/blogs/2004/11/01/php-manual-cli-style/</link>
	<description>News, opinion, and fresh thinking for web developers and designers. The official podcast of sitepoint.com.</description>
	<pubDate>Tue, 02 Dec 2008 14:37:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: nucleuz</title>
		<link>http://www.sitepoint.com/blogs/2004/11/01/php-manual-cli-style/#comment-1317</link>
		<dc:creator>nucleuz</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">1374749839#comment-1317</guid>
		<description>&lt;p&gt;Released it last night without thinking too much about the end user: will get some proper documentation up later today.&lt;br /&gt;&lt;br /&gt;
Also: there will be the possibility to do more general queries - "phpm mysql_*" "phpm -c domdocument" etc. &lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>Released it last night without thinking too much about the end user: will get some proper documentation up later today.</p>
<p>Also: there will be the possibility to do more general queries - &#8220;phpm mysql_*&#8221; &#8220;phpm -c domdocument&#8221; etc. </p>]]></content:encoded>
	</item>
	<item>
		<title>By: Dangermouse</title>
		<link>http://www.sitepoint.com/blogs/2004/11/01/php-manual-cli-style/#comment-1318</link>
		<dc:creator>Dangermouse</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">1374749839#comment-1318</guid>
		<description>&lt;p&gt;heh, that works good scoates :)&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>heh, that works good scoates :)</p>]]></content:encoded>
	</item>
	<item>
		<title>By: HarryF</title>
		<link>http://www.sitepoint.com/blogs/2004/11/01/php-manual-cli-style/#comment-1319</link>
		<dc:creator>HarryF</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">1374749839#comment-1319</guid>
		<description>&lt;p&gt;&lt;blockquote&gt;&lt;p&gt;&lt;br /&gt;
Wow.. overkill.&lt;br /&gt;
&lt;/p&gt;&lt;/blockquote&gt;&lt;/p&gt;

&lt;p&gt;Man I hate it when someone kills my overkill ;) - guess Havard is feeling the same.&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>
<blockquote>
<p>
Wow.. overkill.
</p>
</blockquote>
</p><p>Man I hate it when someone kills my overkill ;) - guess Havard is feeling the same.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: nucleuz</title>
		<link>http://www.sitepoint.com/blogs/2004/11/01/php-manual-cli-style/#comment-1320</link>
		<dc:creator>nucleuz</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">1374749839#comment-1320</guid>
		<description>&lt;p&gt;Some might call it overkill, some don't know that I have bigger plans for this than just a function param output..... ( just added support for Console_Color at my local machine, uploading soon, much more to come... ), but please: do use grep to figure it out.&lt;/p&gt;

&lt;p&gt;And: the app is also a good example on how the DirectoryItertor, DomDocument, XPath, SimpleXML can work together to create a program.&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>Some might call it overkill, some don&#8217;t know that I have bigger plans for this than just a function param output&#8230;.. ( just added support for Console_Color at my local machine, uploading soon, much more to come&#8230; ), but please: do use grep to figure it out.</p>
<p>And: the app is also a good example on how the DirectoryItertor, DomDocument, XPath, SimpleXML can work together to create a program.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: scoates</title>
		<link>http://www.sitepoint.com/blogs/2004/11/01/php-manual-cli-style/#comment-1321</link>
		<dc:creator>scoates</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">1374749839#comment-1321</guid>
		<description>&lt;p&gt;I had them delete my post because I thought it contained my php.net token (but it didn't, it turns out.. silly me, lots on my mind).&lt;/p&gt;

&lt;p&gt;So, here it is again, for those of you that are wondering what they're talking about:&lt;/p&gt;

&lt;code&gt;
sean@iconoclast:~/php/cvs/phpdoc$ grep in_array funcsummary.txt
bool in_array(mixed needle, array haystack [, bool strict])
sean@iconoclast:~/php/cvs/phpdoc$ grep in_array funcsummary.txt -A1 &#124; xargs
bool in_array(mixed needle, array haystack [, bool strict]) Checks if the given value exists in the array&lt;/code&gt;&lt;p&gt;(http://cvs.php.net/co.php/phpdoc/funcsummary.txt?r=1.26)&lt;/p&gt;

&lt;p&gt;S&lt;br /&gt;
&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>I had them delete my post because I thought it contained my php.net token (but it didn&#8217;t, it turns out.. silly me, lots on my mind).</p>
<p>So, here it is again, for those of you that are wondering what they&#8217;re talking about:</p>
<p><code>
sean@iconoclast:~/php/cvs/phpdoc$ grep in_array funcsummary.txt
bool in_array(mixed needle, array haystack [, bool strict])
sean@iconoclast:~/php/cvs/phpdoc$ grep in_array funcsummary.txt -A1 | xargs
bool in_array(mixed needle, array haystack [, bool strict]) Checks if the given value exists in the array</code>
</p><p>(http://cvs.php.net/co.php/phpdoc/funcsummary.txt?r=1.26)</p>
<p>S</p>]]></content:encoded>
	</item>
	<item>
		<title>By: scoates</title>
		<link>http://www.sitepoint.com/blogs/2004/11/01/php-manual-cli-style/#comment-1322</link>
		<dc:creator>scoates</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">1374749839#comment-1322</guid>
		<description>&lt;p&gt;Nucleuz:&lt;/p&gt;

&lt;p&gt;Sure, I mean what you're doing is great, and if it evolves into something more, more power to both you, and docbook (note: you may or may not run into problems when we implement the &lt;a href="http://wiki.phpdoc.info/DocSkel"&gt;new style&lt;/a&gt; for the manual, depending on how  and what information you're planning on grabbing).&lt;/p&gt;

&lt;p&gt;This is a testament to why docbook works, and why it SHOULD be used for projects like phpdoc (and PEARdoc *ahem*).&lt;/p&gt;

&lt;p&gt;S&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>Nucleuz:</p>
<p>Sure, I mean what you&#8217;re doing is great, and if it evolves into something more, more power to both you, and docbook (note: you may or may not run into problems when we implement the <a href="http://wiki.phpdoc.info/DocSkel">new style</a> for the manual, depending on how  and what information you&#8217;re planning on grabbing).</p>
<p>This is a testament to why docbook works, and why it SHOULD be used for projects like phpdoc (and PEARdoc *ahem*).</p>
<p>S</p>]]></content:encoded>
	</item>
</channel>
</rss>
