<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Iterators in PHP5</title>
	<link>http://ramikayyali.com/archives/2005/02/25/iterators</link>
	<description>Unfocused, Opinionated.</description>
	<pubDate>Tue, 06 Jan 2009 04:33:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>

	<item>
		<title>By: Tom</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-81</link>
		<author>Tom</author>
		<pubDate>Sat, 26 Feb 2005 18:28:39 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-81</guid>
					<description>&lt;p&gt;Wow! Excellent article! Very useful; thank you for the introduction. Am I alone in not knowing the SPL existed? :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Wow! Excellent article! Very useful; thank you for the introduction. Am I alone in not knowing the SPL existed? :)</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Rami Kayyali</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-82</link>
		<author>Rami Kayyali</author>
		<pubDate>Sat, 26 Feb 2005 21:06:52 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-82</guid>
					<description>&lt;p&gt;I don't think so, I read a lot of PHP5 code that can be converted to a much more readable code using SPL.&lt;/p&gt;

&lt;p&gt;Thanks for reading this, I'm really glad you liked it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think so, I read a lot of PHP5 code that can be converted to a much more readable code using SPL.</p>
<p>Thanks for reading this, I&#8217;m really glad you liked it.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Teddy</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-83</link>
		<author>Teddy</author>
		<pubDate>Mon, 18 Apr 2005 05:43:17 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-83</guid>
					<description>&lt;p&gt;SPL is one of the main reasons that I finnaly installed PHP5, so this article was perfect for me.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>SPL is one of the main reasons that I finnaly installed PHP5, so this article was perfect for me.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: stancell</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-84</link>
		<author>stancell</author>
		<pubDate>Sat, 23 Apr 2005 12:31:44 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-84</guid>
					<description>&lt;p&gt;I think listing 7 has errors:&lt;/p&gt;

&lt;p&gt;$iterator = new ExtensionFilter(
                new LimitIterator(
                    new DirectoryIterator('/tmp'),
                    0, 10),
                'bz2'
            );
should be:
$iterator = new LimitIterator(
                    new ExtensionFilter(
                       new DirectoryIterator('/tmp'),
                    'bz2'),
                    0, 10);&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I think listing 7 has errors:</p>
<p>$iterator = new ExtensionFilter(<br />
                new LimitIterator(<br />
                    new DirectoryIterator(&#8217;/tmp&#8217;),<br />
                    0, 10),<br />
                &#8216;bz2&#8242;<br />
            );<br />
should be:<br />
$iterator = new LimitIterator(<br />
                    new ExtensionFilter(<br />
                       new DirectoryIterator(&#8217;/tmp&#8217;),<br />
                    &#8216;bz2&#8242;),<br />
                    0, 10);</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Marcus Börger</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-85</link>
		<author>Marcus Börger</author>
		<pubDate>Wed, 04 May 2005 07:57:04 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-85</guid>
					<description>&lt;p&gt;Very nice article. I'll add a link on the SPL pages as soon as i regenerate the docs &#38; thanks.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Very nice article. I&#8217;ll add a link on the SPL pages as soon as i regenerate the docs &amp; thanks.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Rami Kayyali</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-86</link>
		<author>Rami Kayyali</author>
		<pubDate>Wed, 04 May 2005 21:54:31 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-86</guid>
					<description>&lt;p&gt;Thank you Marcus, I'm very glad you liked it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thank you Marcus, I&#8217;m very glad you liked it.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Maciek</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-87</link>
		<author>Maciek</author>
		<pubDate>Sat, 14 May 2005 18:56:29 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-87</guid>
					<description>&lt;p&gt;God Article, was looking for somthing like this for a couple of months now.&lt;/p&gt;

&lt;p&gt;Thanks !!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>God Article, was looking for somthing like this for a couple of months now.</p>
<p>Thanks !!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Joseph Crawford</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-88</link>
		<author>Joseph Crawford</author>
		<pubDate>Sat, 11 Jun 2005 07:41:27 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-88</guid>
					<description>&lt;p&gt;great article, very clear and concise.&lt;/p&gt;

&lt;p&gt;thanks ;)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>great article, very clear and concise.</p>
<p>thanks ;)</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Paul Chabinsky</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-89</link>
		<author>Paul Chabinsky</author>
		<pubDate>Fri, 15 Jul 2005 00:32:23 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-89</guid>
					<description>&lt;p&gt;Thank you thery match!!! This is a very very usefull article.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thank you thery match!!! This is a very very usefull article.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Ashley Bowers</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-90</link>
		<author>Ashley Bowers</author>
		<pubDate>Sun, 18 Dec 2005 13:47:41 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-90</guid>
					<description>&lt;p&gt;Great article !&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great article !</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: sarita kamboj</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-850</link>
		<author>sarita kamboj</author>
		<pubDate>Wed, 10 May 2006 22:06:48 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-850</guid>
					<description>&lt;p&gt;nice article .... thanks, was looking for this 
type from many days&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>nice article &#8230;. thanks, was looking for this<br />
type from many days</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Grant Parks</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-2151</link>
		<author>Grant Parks</author>
		<pubDate>Wed, 21 Jun 2006 03:30:18 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-2151</guid>
					<description>&lt;p&gt;THANKS!  I'm just getting into PHP - working with a bunch of
experienced PHP people.  I stumbled on SPL while working on
some little utilities of my own.  One of my teammates saw my
code and asked what's a DirectoryIteratorIterator?  When I
told him about SPL, it sure made me look good!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>THANKS!  I&#8217;m just getting into <acronym title="Hypertext PreProcessing">PHP</acronym> - working with a bunch of<br />
experienced PHP people.  I stumbled on SPL while working on<br />
some little utilities of my own.  One of my teammates saw my<br />
code and asked what&#8217;s a DirectoryIteratorIterator?  When I<br />
told him about SPL, it sure made me look good!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jason Chapin</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-10152</link>
		<author>Jason Chapin</author>
		<pubDate>Thu, 30 Nov 2006 19:25:40 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-10152</guid>
					<description>&lt;p&gt;Excellent. This article is a fine departure from the usual SPL articles which assume the reader is familiar with the concept of iterators (for instance from experience with the C++ STL) and really breaks it down with real world examples of usage.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Excellent. This article is a fine departure from the usual SPL articles which assume the reader is familiar with the concept of iterators (for instance from experience with the C++ STL) and really breaks it down with real world examples of usage.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Greg Alexander</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-10251</link>
		<author>Greg Alexander</author>
		<pubDate>Sun, 03 Dec 2006 01:01:01 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-10251</guid>
					<description>&lt;p&gt;This is great, I also found an excellent tutorial on SPL at http://phpro.org/tutorials/Introduction-to-SPL.html
These have been most helpful&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This is great, I also found an excellent tutorial on SPL at http://phpro.org/tutorials/Introduction-to-SPL.html<br />
These have been most helpful</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Maurice Fonk</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-20689</link>
		<author>Maurice Fonk</author>
		<pubDate>Wed, 25 Apr 2007 13:04:49 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-20689</guid>
					<description>&lt;p&gt;Great stuff! While I was familiar with most of the things you explained here, it was nice to see an article that discussed most facets of SPL at once, and in depth.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great stuff! While I was familiar with most of the things you explained here, it was nice to see an article that discussed most facets of SPL at once, and in depth.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: dr.colossos</title>
		<link>http://ramikayyali.com/archives/2005/02/25/iterators#comment-78663</link>
		<author>dr.colossos</author>
		<pubDate>Mon, 15 Sep 2008 21:26:38 +0000</pubDate>
		<guid>http://ramikayyali.com/archives/2005/02/25/iterators#comment-78663</guid>
					<description>&lt;p&gt;A very very good article.&lt;/p&gt;

&lt;p&gt;With the lack of documentation on that, I found this resource to be extremly helpful.&lt;/p&gt;

&lt;p&gt;You should link to this on php.net, really!&lt;/p&gt;

&lt;p&gt;So, more people can find your great work!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>A very very good article.</p>
<p>With the lack of documentation on that, I found this resource to be extremly helpful.</p>
<p>You should link to this on <acronym title="Hypertext PreProcessing">PHP</acronym>.net, really!</p>
<p>So, more people can find your great work!</p>
]]></content:encoded>
				</item>
</channel>
</rss>
