<?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: Limiting the number of times a PHP loop will run using the break command</title>
	<atom:link href="http://blog.neilpie.co.uk/web-development/limiting-the-number-of-times-a-php-loop-will-run-using-the-break-command/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.neilpie.co.uk/web-development/limiting-the-number-of-times-a-php-loop-will-run-using-the-break-command</link>
	<description>PHP, Web development, Skiffle...</description>
	<lastBuildDate>Fri, 30 Apr 2010 16:50:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Neil</title>
		<link>http://blog.neilpie.co.uk/web-development/limiting-the-number-of-times-a-php-loop-will-run-using-the-break-command/comment-page-1#comment-4</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Fri, 08 Jan 2010 09:54:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.neilpie.co.uk/?p=167#comment-4</guid>
		<description>Good point on the neatness - I&#039;ll edit that in. Probably a good idea to drop in a link to &#039;break&#039; in the manual as well to cover the break level argument. Cheers Chris!</description>
		<content:encoded><![CDATA[<p>Good point on the neatness &#8211; I&#8217;ll edit that in. Probably a good idea to drop in a link to &#8216;break&#8217; in the manual as well to cover the break level argument. Cheers Chris!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CHris</title>
		<link>http://blog.neilpie.co.uk/web-development/limiting-the-number-of-times-a-php-loop-will-run-using-the-break-command/comment-page-1#comment-3</link>
		<dc:creator>CHris</dc:creator>
		<pubDate>Wed, 06 Jan 2010 17:17:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.neilpie.co.uk/?p=167#comment-3</guid>
		<description>Rather than &quot;if($i == 8) break; $i++;&quot;, you could use &quot;if(++$i == 8) break;&quot;. I think that&#039;s neater still.

And don&#039;t forget that break can also take an argument to break out of several levels of looping at once.</description>
		<content:encoded><![CDATA[<p>Rather than &#8220;if($i == 8) break; $i++;&#8221;, you could use &#8220;if(++$i == 8) break;&#8221;. I think that&#8217;s neater still.</p>
<p>And don&#8217;t forget that break can also take an argument to break out of several levels of looping at once.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
