<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[蚁文尘都〖隋〗]]></title> 
<link>http://www.aixq.com/index.php</link> 
<description><![CDATA[自强创新,复杂的东西,简单做!]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[蚁文尘都〖隋〗]]></copyright>
<item>
<link>http://www.aixq.com/post//</link>
<title><![CDATA[for 循环]]></title> 
<author>admin &lt;wpsni@aixq.com&gt;</author>
<category><![CDATA[代码片段，演示也有]]></category>
<pubDate>Thu, 06 Apr 2006 00:05:41 +0000</pubDate> 
<guid>http://www.aixq.com/post//</guid> 
<description>
<![CDATA[ 
	for (expr1; expr2; expr3) statement<br/><br/><br/><div class="code"><br/>&lt;?php<br/>/* example 1 */<br/><br/>for ($i = 1; $i &lt;= 10; $i++) &#123;<br/> &nbsp; &nbsp;print $i;<br/>&#125;<br/></div><br/><div class="code"><br/>/* example 2 */<br/><br/>for ($i = 1; ; $i++) &#123;<br/> &nbsp; &nbsp;if ($i &gt; 10) &#123;<br/> &nbsp; &nbsp; &nbsp; &nbsp;break;<br/> &nbsp; &nbsp;&#125;<br/> &nbsp; &nbsp;print $i;<br/>&#125;<br/></div><br/><br/><div class="code"><br/>/* example 3 */<br/><br/>$i = 1;<br/>for (;;) &#123;<br/> &nbsp; &nbsp;if ($i &gt; 10) &#123;<br/> &nbsp; &nbsp; &nbsp; &nbsp;break;<br/> &nbsp; &nbsp;&#125;<br/> &nbsp; &nbsp;print $i;<br/> &nbsp; &nbsp;$i++;<br/>&#125;<br/></div><br/><div class="code"><br/>/* example 4 */<br/><br/>for ($i = 1; $i &lt;= 10; print $i, $i++);<br/>?&gt;</div>
]]>
</description>
</item><item>
<link>http://www.aixq.com/post//#blogcomment</link>
<title><![CDATA[[评论] for 循环]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://www.aixq.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>