<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	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反转字符串函数	</title>
	<atom:link href="https://www.coder4.com/archives/74/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com/archives/74</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Sun, 09 Feb 2014 13:10:06 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>
		By: zzbo		</title>
		<link>https://www.coder4.com/archives/74#comment-1245</link>

		<dc:creator><![CDATA[zzbo]]></dc:creator>
		<pubDate>Sun, 09 Feb 2014 13:10:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.coder4.com/?p=74#comment-1245</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.coder4.com/archives/74#comment-1244&quot;&gt;zzbo&lt;/a&gt;.

$str = &#039;abcde&#039;;
$arr1 = str_split($str);
$arr2 = array_reverse($arr1);
echo implode(&#039;&#039;,$arr2);]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.coder4.com/archives/74#comment-1244">zzbo</a>.</p>
<p>$str = 'abcde';<br />
$arr1 = str_split($str);<br />
$arr2 = array_reverse($arr1);<br />
echo implode('',$arr2);</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: zzbo		</title>
		<link>https://www.coder4.com/archives/74#comment-1244</link>

		<dc:creator><![CDATA[zzbo]]></dc:creator>
		<pubDate>Sun, 09 Feb 2014 13:09:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.coder4.com/?p=74#comment-1244</guid>

					<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: 123		</title>
		<link>https://www.coder4.com/archives/74#comment-864</link>

		<dc:creator><![CDATA[123]]></dc:creator>
		<pubDate>Tue, 23 Oct 2012 10:58:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.coder4.com/?p=74#comment-864</guid>

					<description><![CDATA[function reverseStr($str = &#039;&#039;) {
	$count = strlen($str) - 1;
	if ($count) {
		$retStr = &#039;&#039;;
		while($count &#062;= 0) {
			$retStr .= $str{$count--};
		}
		return $retStr;
	}
}]]></description>
			<content:encoded><![CDATA[<p>function reverseStr($str = '') {<br />
	$count = strlen($str) - 1;<br />
	if ($count) {<br />
		$retStr = '';<br />
		while($count &gt;= 0) {<br />
			$retStr .= $str{$count--};<br />
		}<br />
		return $retStr;<br />
	}<br />
}</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
