<?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>“hemono” 的评论</title>
	<atom:link href="http://www.hemono.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.hemono.com</link>
	<description>常记溪亭日暮，沉醉不知归路……</description>
	<lastBuildDate>Fri, 24 Feb 2012 00:41:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>我收藏的技术站点 &#124; 探索---不思 关于 腾讯php程序员面试题目——编程任务（答） 的评论</title>
		<link>http://www.hemono.com/?p=194&#038;cpage=1#comment-1428</link>
		<dc:creator>我收藏的技术站点 &#124; 探索---不思</dc:creator>
		<pubDate>Fri, 24 Feb 2012 00:41:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.hemono.com/?p=194#comment-1428</guid>
		<description>[...]  [...]</description>
		<content:encoded><![CDATA[<p>[...]  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>hemon 关于 timeout 的评论</title>
		<link>http://www.hemono.com/?p=599&#038;cpage=1#comment-1296</link>
		<dc:creator>hemon</dc:creator>
		<pubDate>Fri, 02 Dec 2011 09:48:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.hemono.com/?p=599#comment-1296</guid>
		<description>大文件上传设置

ini_set(&#039;upload_max_filesize&#039;, &#039;10M&#039;);
ini_set(&#039;post_max_size&#039;, &#039;10M&#039;);
ini_set(&#039;max_input_time&#039;, 300);
ini_set(&#039;max_execution_time&#039;, 300);</description>
		<content:encoded><![CDATA[<p>大文件上传设置</p>
<p>ini_set(&#8216;upload_max_filesize&#8217;, &#8217;10M&#8217;);<br />
ini_set(&#8216;post_max_size&#8217;, &#8217;10M&#8217;);<br />
ini_set(&#8216;max_input_time&#8217;, 300);<br />
ini_set(&#8216;max_execution_time&#8217;, 300);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Changing 关于 分页函数 的评论</title>
		<link>http://www.hemono.com/?p=570&#038;cpage=1#comment-1239</link>
		<dc:creator>Changing</dc:creator>
		<pubDate>Sat, 17 Sep 2011 12:36:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.hemono.com/?p=570#comment-1239</guid>
		<description>怎么好梦网不办了吗 。。</description>
		<content:encoded><![CDATA[<p>怎么好梦网不办了吗 。。</p>
]]></content:encoded>
	</item>
	<item>
		<title>收藏的技术站点 &#8211; 轻松麻酱面 关于 腾讯php程序员面试题目——编程任务（答） 的评论</title>
		<link>http://www.hemono.com/?p=194&#038;cpage=1#comment-1166</link>
		<dc:creator>收藏的技术站点 &#8211; 轻松麻酱面</dc:creator>
		<pubDate>Fri, 29 Jul 2011 06:09:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.hemono.com/?p=194#comment-1166</guid>
		<description>[...] hemono » Blog Archive » 腾讯php程序员面试题目——编程任务（附答案） [...]</description>
		<content:encoded><![CDATA[<p>[...] hemono » Blog Archive » 腾讯php程序员面试题目——编程任务（附答案） [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>hemon 关于 腾讯php程序员面试题目——编程任务（答） 的评论</title>
		<link>http://www.hemono.com/?p=194&#038;cpage=1#comment-1087</link>
		<dc:creator>hemon</dc:creator>
		<pubDate>Thu, 19 May 2011 08:29:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.hemono.com/?p=194#comment-1087</guid>
		<description>我仔细看完了你的代码，
读取一个单词之后，你使用：
if($word === $compare)  判断，是否是要寻找的单词，
你得仔细想想，为什么PHP可以用===比较字符串，
其实字符串本质上还是由以一个一个字符组成的数组，
if($word === $compare) ，
还是比较两个数组是否相等，还是需要for的，
不要被php的简洁强大，蒙蔽了本质！

推荐看看：
http://wendell07.blog.hexun.com/14112681_d.html</description>
		<content:encoded><![CDATA[<p>我仔细看完了你的代码，<br />
读取一个单词之后，你使用：<br />
if($word === $compare)  判断，是否是要寻找的单词，<br />
你得仔细想想，为什么PHP可以用===比较字符串，<br />
其实字符串本质上还是由以一个一个字符组成的数组，<br />
if($word === $compare) ，<br />
还是比较两个数组是否相等，还是需要for的，<br />
不要被php的简洁强大，蒙蔽了本质！</p>
<p>推荐看看：<br />
<a href="http://wendell07.blog.hexun.com/14112681_d.html" rel="nofollow">http://wendell07.blog.hexun.com/14112681_d.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>dlsky 关于 libapache2-svn 安装流程 的评论</title>
		<link>http://www.hemono.com/?p=381&#038;cpage=1#comment-1070</link>
		<dc:creator>dlsky</dc:creator>
		<pubDate>Tue, 19 Apr 2011 16:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://i.hemon.cn/?p=381#comment-1070</guid>
		<description>Very good thinks ～～～～</description>
		<content:encoded><![CDATA[<p>Very good thinks ～～～～</p>
]]></content:encoded>
	</item>
	<item>
		<title>bthao 关于 腾讯php程序员面试题目——编程任务（答） 的评论</title>
		<link>http://www.hemono.com/?p=194&#038;cpage=1#comment-1068</link>
		<dc:creator>bthao</dc:creator>
		<pubDate>Fri, 15 Apr 2011 20:14:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.hemono.com/?p=194#comment-1068</guid>
		<description>博主的复杂度其实已经不符合题目的要求了

参考我的这个：http://bthao.iteye.com/admin/blogs/1004772</description>
		<content:encoded><![CDATA[<p>博主的复杂度其实已经不符合题目的要求了</p>
<p>参考我的这个：http://bthao.iteye.com/admin/blogs/1004772</p>
]]></content:encoded>
	</item>
	<item>
		<title>mscorp 关于 禁止选中 的评论</title>
		<link>http://www.hemono.com/?p=295&#038;cpage=1#comment-1051</link>
		<dc:creator>mscorp</dc:creator>
		<pubDate>Fri, 11 Mar 2011 03:38:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.hemono.com/?p=295#comment-1051</guid>
		<description>请问FF与IE上的Javascript区别，有没有总结比较好的资料？</description>
		<content:encoded><![CDATA[<p>请问FF与IE上的Javascript区别，有没有总结比较好的资料？</p>
]]></content:encoded>
	</item>
	<item>
		<title>Holmesian 关于 一句Shell同步两台MySQL数据库 的评论</title>
		<link>http://www.hemono.com/?p=350&#038;cpage=1#comment-1029</link>
		<dc:creator>Holmesian</dc:creator>
		<pubDate>Wed, 27 Oct 2010 13:27:29 +0000</pubDate>
		<guid isPermaLink="false">http://i.hemon.cn/?p=350#comment-1029</guid>
		<description>如果mysql的数据非常的大呢？  效果如何</description>
		<content:encoded><![CDATA[<p>如果mysql的数据非常的大呢？  效果如何</p>
]]></content:encoded>
	</item>
	<item>
		<title>一句Shell同步两台MySQL数据库 &#124; evilcoda 关于 一句Shell同步两台MySQL数据库 的评论</title>
		<link>http://www.hemono.com/?p=350&#038;cpage=1#comment-1028</link>
		<dc:creator>一句Shell同步两台MySQL数据库 &#124; evilcoda</dc:creator>
		<pubDate>Mon, 25 Oct 2010 16:59:06 +0000</pubDate>
		<guid isPermaLink="false">http://i.hemon.cn/?p=350#comment-1028</guid>
		<description>[...] 更多： http://i.hemon.cn/?p=350 [...]</description>
		<content:encoded><![CDATA[<p>[...] 更多： <a href="http://i.hemon.cn/?p=350" rel="nofollow">http://i.hemon.cn/?p=350</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

