<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>真好吃 &#187; PHP</title>
	<atom:link href="http://tgic.me/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://tgic.me</link>
	<description>blog真的很好吃</description>
	<lastBuildDate>Sun, 01 Jan 2012 17:31:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>wp 升级时候出现 输入用户名</title>
		<link>http://tgic.me/2009/11/29/wp-%e5%8d%87%e7%ba%a7%e6%97%b6%e5%80%99%e5%87%ba%e7%8e%b0-%e8%be%93%e5%85%a5%e7%94%a8%e6%88%b7%e5%90%8d/</link>
		<comments>http://tgic.me/2009/11/29/wp-%e5%8d%87%e7%ba%a7%e6%97%b6%e5%80%99%e5%87%ba%e7%8e%b0-%e8%be%93%e5%85%a5%e7%94%a8%e6%88%b7%e5%90%8d/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 06:41:20 +0000</pubDate>
		<dc:creator>T.G.</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[思考]]></category>

		<guid isPermaLink="false">http://farmer1992.phpsix.net/?p=666</guid>
		<description><![CDATA[WordPress 升级发现 让我输入 用户名密码 这个太搞笑了 所以就阅读了以下 WP那部分代码 问题出在 这个 request_filesystem_credentials 函数 在这个地方 641                         if ( getmyuid() == fileowner($temp_file_name) ) 642                                 $method = &#8216;direct&#8217;; 643                         @fclose($temp_handle); wp居然判断了以下 owner 不是httpd 居然不可以…… 当然 最后 我是修正的owner 因为代码会被升级的]]></description>
			<content:encoded><![CDATA[<p>WordPress 升级发现 让我输入 用户名密码</p>
<p>这个太搞笑了</p>
<p>所以就阅读了以下 WP那部分代码</p>
<p>问题出在 这个 <span>request_filesystem_credentials 函数</span></p>
<p>在这个地方</p>
<p>641                         if ( getmyuid() == fileowner($temp_file_name) )<br />
642                                 $method = &#8216;direct&#8217;;<br />
643                         @fclose($temp_handle);</p>
<p>wp居然判断了以下 owner 不是httpd 居然不可以……</p>
<p>当然 最后 我是修正的owner 因为代码会被升级的</p>
]]></content:encoded>
			<wfw:commentRss>http://tgic.me/2009/11/29/wp-%e5%8d%87%e7%ba%a7%e6%97%b6%e5%80%99%e5%87%ba%e7%8e%b0-%e8%be%93%e5%85%a5%e7%94%a8%e6%88%b7%e5%90%8d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>编译php -with-config-file-path=/etc 不起作用的原因</title>
		<link>http://tgic.me/2009/11/01/%e7%bc%96%e8%af%91php-with-config-file-pathetc-%e4%b8%8d%e8%b5%b7%e4%bd%9c%e7%94%a8%e7%9a%84%e5%8e%9f%e5%9b%a0/</link>
		<comments>http://tgic.me/2009/11/01/%e7%bc%96%e8%af%91php-with-config-file-pathetc-%e4%b8%8d%e8%b5%b7%e4%bd%9c%e7%94%a8%e7%9a%84%e5%8e%9f%e5%9b%a0/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 17:41:45 +0000</pubDate>
		<dc:creator>T.G.</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://farmer1992.phpsix.net/?p=650</guid>
		<description><![CDATA[最新迁移服务器 重新 编译 php 准备 时髦一下 把php.ini 弄到 /etc下边 结果编译 -with-config-file-path 说什么也不起作用 php -info 发现 Loaded Configuration File 是none 而/etc却显示了 找不到 原因 最后 在 php官方的 bug 上找到了几个人反应这个问题 一个 老兄 说是selinux 的问题 让关闭了 不过 我关闭了也没起作用 这段对话 http://bugs.php.net/bug.php?id=41497 后来发现一个 http://bugs.php.net/bug.php?id=25466 我删除了源代码 目录 然后 全新编译了一遍 问题解决了…… YES It works for me]]></description>
			<content:encoded><![CDATA[<p>最新迁移服务器</p>
<p>重新 编译 php 准备 时髦一下 把php.ini 弄到 /etc下边</p>
<p>结果编译 -with-config-file-path 说什么也不起作用</p>
<p>php -info 发现 Loaded Configuration File 是none</p>
<p>而/etc却显示了</p>
<p>找不到 原因 最后 在 php官方的 bug 上找到了几个人反应这个问题</p>
<p>一个 老兄 说是selinux 的问题 让关闭了</p>
<p>不过 我关闭了也没起作用</p>
<p>这段对话</p>
<p>http://bugs.php.net/bug.php?id=41497</p>
<p><span style="color: #ff0000;">后来发现一个</span></p>
<p><span style="color: #ff0000;">http://bugs.php.net/bug.php?id=25466</span></p>
<p><span style="color: #ff0000;">我删除了源代码 目录 </span></p>
<p><span style="color: #ff0000;">然后 全新编译了一遍</span></p>
<p><span style="color: #ff0000;">问题解决了……<br />
</span></p>
<p><span style="color: #ff0000;">YES It works for me</span></p>
]]></content:encoded>
			<wfw:commentRss>http://tgic.me/2009/11/01/%e7%bc%96%e8%af%91php-with-config-file-pathetc-%e4%b8%8d%e8%b5%b7%e4%bd%9c%e7%94%a8%e7%9a%84%e5%8e%9f%e5%9b%a0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phdoc无法生成文档的奇怪问题</title>
		<link>http://tgic.me/2009/10/11/phdoc%e6%97%a0%e6%b3%95%e7%94%9f%e6%88%90%e6%96%87%e6%a1%a3%e7%9a%84%e5%a5%87%e6%80%aa%e9%97%ae%e9%a2%98/</link>
		<comments>http://tgic.me/2009/10/11/phdoc%e6%97%a0%e6%b3%95%e7%94%9f%e6%88%90%e6%96%87%e6%a1%a3%e7%9a%84%e5%a5%87%e6%80%aa%e9%97%ae%e9%a2%98/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 12:20:30 +0000</pubDate>
		<dc:creator>T.G.</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://farmer1992.phpsix.net/?p=633</guid>
		<description><![CDATA[现代一次用phpdoc写文档 居然出错…… 不断到报时区错误 很奇怪 不过根据错误提示 将php.ini 中的 date.timezone = Asia/Chongqing 设置了就好了……]]></description>
			<content:encoded><![CDATA[<p>现代一次用phpdoc写文档 居然出错……<br />
不断到报时区错误 很奇怪 不过根据错误提示</p>
<p>将php.ini 中的</p>
<p>date.timezone = Asia/Chongqing</p>
<p>设置了就好了……</p>
]]></content:encoded>
			<wfw:commentRss>http://tgic.me/2009/10/11/phdoc%e6%97%a0%e6%b3%95%e7%94%9f%e6%88%90%e6%96%87%e6%a1%a3%e7%9a%84%e5%a5%87%e6%80%aa%e9%97%ae%e9%a2%98/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>作门卫</title>
		<link>http://tgic.me/2009/08/08/%e4%bd%9c%e9%97%a8%e5%8d%ab/</link>
		<comments>http://tgic.me/2009/08/08/%e4%bd%9c%e9%97%a8%e5%8d%ab/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 15:22:03 +0000</pubDate>
		<dc:creator>T.G.</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://farmer1992.phpsix.net/?p=595</guid>
		<description><![CDATA[以前都是我被门卫审查 现在有机会作门卫审查别人…… 心里有种说不出的感觉 机会是 2个人 都比我要老 而且关于内容 他们机会不知道 我一走神就方过了 因为我觉得 他们都很有潜能 重要的是学习的能力 我觉的 大家看中也是这个 而且基础很重要 不过我有了标准下次会更有经验 boss 告诉一个已经过他了 面临最终 boss了 我恭喜他 虽然我并不合格]]></description>
			<content:encoded><![CDATA[<p>以前都是我被门卫审查</p>
<p>现在有机会作门卫审查别人…… 心里有种说不出的感觉</p>
<p>机会是 2个人 都比我要老 而且关于内容 他们机会不知道</p>
<p>我一走神就方过了 因为我觉得 他们都很有潜能</p>
<p>重要的是学习的能力</p>
<p>我觉的 大家看中也是这个 而且基础很重要</p>
<p>不过我有了标准下次会更有经验 boss 告诉一个已经过他了 面临最终 boss了</p>
<p>我恭喜他 虽然我并不合格</p>
]]></content:encoded>
			<wfw:commentRss>http://tgic.me/2009/08/08/%e4%bd%9c%e9%97%a8%e5%8d%ab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rasmus Lerdorf大师的解答</title>
		<link>http://tgic.me/2009/08/04/rasmus-lerdorf%e5%a4%a7%e5%b8%88%e7%9a%84%e8%a7%a3%e7%ad%94/</link>
		<comments>http://tgic.me/2009/08/04/rasmus-lerdorf%e5%a4%a7%e5%b8%88%e7%9a%84%e8%a7%a3%e7%ad%94/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 05:12:57 +0000</pubDate>
		<dc:creator>T.G.</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://farmer1992.phpsix.net/?p=593</guid>
		<description><![CDATA[幸运可以向php创始人直接请教问题 哈哈 $a = 2; a(&#38;$a); function a($a){ $b = 1; $a = &#38;$b; } echo $a; why $a is 2 not 1 10分钟就回信了…… You are treating references like C pointers there. They aren&#8217;t addresses in memory. When you call your function a local variable called $a is created which is a reference to the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;" align="left">幸运可以向php创始人直接请教问题 哈哈</p>
<p style="text-align: left;" align="left"><span style="font-family: Courier New; color: #660000; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: #660000;" lang="EN-US">$a </span></span><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">= </span></span><span style="font-family: Courier New; color: red; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: red;" lang="EN-US">2</span></span><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">;</span></span></p>
<p style="text-align: left;" align="left"><span style="font-family: Courier New; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;;" lang="EN-US"> </span></span></p>
<p style="text-align: left;" align="left"><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">a(&amp;</span></span><span style="font-family: Courier New; color: #660000; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: #660000;" lang="EN-US">$a</span></span><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">);</span></span></p>
<p style="text-align: left;" align="left"><span style="font-family: Courier New; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;;" lang="EN-US"> </span></span></p>
<p style="text-align: left;" align="left"><span style="font-family: Courier New; color: blue; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: blue;" lang="EN-US">function </span></span><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">a(</span></span><span style="font-family: Courier New; color: #660000; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: #660000;" lang="EN-US">$a</span></span><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">){</span></span></p>
<p style="text-align: left;" align="left"><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US"> </span></span><span style="font-family: Courier New; color: #660000; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: #660000;" lang="EN-US">$b </span></span><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">= </span></span><span style="font-family: Courier New; color: red; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: red;" lang="EN-US">1</span></span><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">;</span></span></p>
<p style="text-align: left;" align="left"><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US"> </span></span><span style="font-family: Courier New; color: #660000; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: #660000;" lang="EN-US">$a </span></span><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">= &amp;</span></span><span style="font-family: Courier New; color: #660000; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: #660000;" lang="EN-US">$b</span></span><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">;</span></span></p>
<p style="text-align: left;" align="left"><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">}</span></span></p>
<p><span style="font-family: Courier New; color: blue; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: blue;" lang="EN-US">echo </span></span><span style="font-family: Courier New; color: #660000; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: #660000;" lang="EN-US">$a</span></span><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">;</span></span></p>
<p><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US"> </span></span></p>
<p><span style="font-family: Courier New; color: black; font-size: x-small;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; color: black;" lang="EN-US">why $a is 2 not 1</span></span></p>
<p>10分钟就回信了……</p>
<p>You are treating references like C pointers there.<br />
They aren&#8217;t addresses in memory.</p>
<p>When you call your function a local variable called $a<br />
is created which is a reference to the global variable $a.</p>
<p>Then you do:</p>
<p>$b = 1;<br />
$a = &amp;$b;</p>
<p>Now you are moving the reference of $a to be a reference to<br />
the function-local variable $b.  You have now lost the reference<br />
to the global $a.  When the function ends, both $a and $b drop<br />
out of scope.</p>
<p>-Rasmus</p>
]]></content:encoded>
			<wfw:commentRss>http://tgic.me/2009/08/04/rasmus-lerdorf%e5%a4%a7%e5%b8%88%e7%9a%84%e8%a7%a3%e7%ad%94/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eqdkp discuz 对接器</title>
		<link>http://tgic.me/2009/06/08/eqdkp-discuz-%e5%af%b9%e6%8e%a5%e5%99%a8/</link>
		<comments>http://tgic.me/2009/06/08/eqdkp-discuz-%e5%af%b9%e6%8e%a5%e5%99%a8/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 20:45:53 +0000</pubDate>
		<dc:creator>T.G.</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[作品]]></category>

		<guid isPermaLink="false">http://farmer1992.phpsix.net/?p=543</guid>
		<description><![CDATA[序 这个插件 很多人找我要很久了 一直没发布的原因 是因为我开始是为自己网站写的 没有考虑可移植性 这几天 好多人问我要…… 还有个老兄 等我一宿 我 半夜回来他还在那等我 我感到很内疚 就把这个东西给重写了 希望能给大家帮组 1 这是什么 这是一个EQdkp的 适配器 使Discuz能天然的调用显示EQdkp中的DKP信息 如果你还不明白 请看演示 http://www.mytbc.cn/bbs/dkp.php 2 尝试自己安装 使用记事本修改dkp.php 中的配置部分 上传 dkp.php 和 dkp目录到你的Discuz 目录 然后访问 http://你的网站/你的discuz/dkp/addmenu.php 添加菜单(需要管理员) 3 仍然有问题 联系作者 QQ 22267156 信箱 farmer1992@gmail.com 即使你没有尝试自己安装 直接联系我我也是会认真帮你解答问题的 但是我还是希望我的程序让你得到解决问题的快感 eq-dz_utf8.rar (8.67 KB) 下载次数:0 2 分钟前 eq-dz_gbk.rar (8.47 KB)]]></description>
			<content:encoded><![CDATA[<p>序<br />
这个插件 很多人找我要很久了<br />
一直没发布的原因 是因为我开始是为自己网站写的<br />
没有考虑可移植性<br />
这几天 好多人问我要…… 还有个老兄 等我一宿<br />
我 半夜回来他还在那等我 我感到很内疚 就把这个东西给重写了<br />
希望能给大家帮组</p>
<p>1 这是什么<br />
这是一个EQdkp的 适配器<br />
使Discuz能天然的调用显示EQdkp中的DKP信息<br />
如果你还不明白 请看演示<br />
<a href="http://www.mytbc.cn/bbs/dkp.php" target="_blank">http://www.mytbc.cn/bbs/dkp.php</a></p>
<p>2 尝试自己安装</p>
<p>使用记事本修改dkp.php 中的配置部分<br />
上传 dkp.php 和 dkp目录到你的Discuz 目录<br />
然后访问 http://你的网站/你的discuz/dkp/addmenu.php 添加菜单(需要管理员)</p>
<p>3 仍然有问题<br />
联系作者<br />
QQ 22267156<br />
信箱 <a href="mailto:farmer1992@gmail.com">farmer1992@gmail.com</a></p>
<p>即使你没有尝试自己安装 直接联系我我也是会认真帮你解答问题的<br />
但是我还是希望我的程序让你得到解决问题的快感</p>
<dl class="t_attachlist">
<dt> <img class="absmiddle" src="http://www.discuz.net/images/attachicons/rar.gif" border="0" alt="" /> </dt>
<dd>
<p class="attachname"><a id="aid475195" onmouseover="showMenu(this.id,false,2)" href="http://www.discuz.net/attachment.php?aid=475195&amp;k=ab6595b52293831e1c86de95e0dfbe32&amp;t=1244410078&amp;fid=26&amp;sid=5a88vdJKR64Cd%2FzGkuQF2kSIm1S9FmMif5BwV0FtFndzgUg" target="_blank">eq-dz_utf8.rar</a> (8.67 KB)</p>
<div id="aid475195_menu" class="attach_popup" style="position: absolute; z-index: 999; clip: rect(auto, auto, auto, auto); left: 272px; top: 1345px; display: none;">
<div class="cornerlayger">
<p>下载次数:0</p>
<p><span title="2009-6-8 05:25">2 分钟前</span></div>
</div>
</dd>
</dl>
<dl class="t_attachlist">
<dt> <img class="absmiddle" src="http://www.discuz.net/images/attachicons/rar.gif" border="0" alt="" /> </dt>
<dd>
<p class="attachname"><a id="aid475196" onmouseover="showMenu(this.id,false,2)" href="http://www.discuz.net/attachment.php?aid=475196&amp;k=1f4269516eccc218e6d006d4c4662a7a&amp;t=1244410078&amp;fid=26&amp;sid=5a88vdJKR64Cd%2FzGkuQF2kSIm1S9FmMif5BwV0FtFndzgUg" target="_blank">eq-dz_gbk.rar</a> (8.47 KB)</p>
</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://tgic.me/2009/06/08/eqdkp-discuz-%e5%af%b9%e6%8e%a5%e5%99%a8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>哥们你听过comsenz么</title>
		<link>http://tgic.me/2009/05/26/%e5%93%a5%e4%bb%ac%e4%bd%a0%e5%90%ac%e8%bf%87comsenz%e4%b9%88/</link>
		<comments>http://tgic.me/2009/05/26/%e5%93%a5%e4%bb%ac%e4%bd%a0%e5%90%ac%e8%bf%87comsenz%e4%b9%88/#comments</comments>
		<pubDate>Tue, 26 May 2009 15:24:00 +0000</pubDate>
		<dc:creator>T.G.</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://farmer1992.phpsix.net/?p=525</guid>
		<description><![CDATA[有人找我说你在discuz公司么 我说不是 我好像在comsenz 有问  那你会用discuz么 帮我搞个论坛能么]]></description>
			<content:encoded><![CDATA[<p>有人找我说你在discuz公司么</p>
<p>我说不是 我好像在comsenz</p>
<p>有问  那你会用discuz么 帮我搞个论坛能么</p>
]]></content:encoded>
			<wfw:commentRss>http://tgic.me/2009/05/26/%e5%93%a5%e4%bb%ac%e4%bd%a0%e5%90%ac%e8%bf%87comsenz%e4%b9%88/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>include的一件怪事</title>
		<link>http://tgic.me/2009/05/25/include%e7%9a%84%e4%b8%80%e4%bb%b6%e6%80%aa%e4%ba%8b/</link>
		<comments>http://tgic.me/2009/05/25/include%e7%9a%84%e4%b8%80%e4%bb%b6%e6%80%aa%e4%ba%8b/#comments</comments>
		<pubDate>Mon, 25 May 2009 14:21:47 +0000</pubDate>
		<dc:creator>T.G.</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://farmer1992.phpsix.net/?p=522</guid>
		<description><![CDATA[php 果然是面向过程的语言 今天开发了一个测试版的东西 想在正式服务器上跑 又怕耽误正式服务器运行 就这样 include &#8216;../config.php&#8217;; 然后 上一级的 config.php也是这个内容 include &#8216;../config.php&#8217;; 结果呢…… 死循环了 非常搞笑…… 以后注意  所以 discuz 的DISCUZ_ROOT 和 uchome 的 S_ROOT都是 有用的东西]]></description>
			<content:encoded><![CDATA[<p>php 果然是面向过程的语言</p>
<p>今天开发了一个测试版的东西 想在正式服务器上跑 又怕耽误正式服务器运行</p>
<p>就这样</p>
<p>include &#8216;../config.php&#8217;;</p>
<p>然后 上一级的 config.php也是这个内容</p>
<p>include &#8216;../config.php&#8217;;</p>
<p>结果呢……</p>
<p>死循环了 非常搞笑……</p>
<p>以后注意  所以 discuz 的DISCUZ_ROOT 和 uchome 的 S_ROOT都是 有用的东西</p>
]]></content:encoded>
			<wfw:commentRss>http://tgic.me/2009/05/25/include%e7%9a%84%e4%b8%80%e4%bb%b6%e6%80%aa%e4%ba%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php输出信息不全</title>
		<link>http://tgic.me/2009/05/21/php%e8%be%93%e5%87%ba%e4%bf%a1%e6%81%af%e4%b8%8d%e5%85%a8/</link>
		<comments>http://tgic.me/2009/05/21/php%e8%be%93%e5%87%ba%e4%bf%a1%e6%81%af%e4%b8%8d%e5%85%a8/#comments</comments>
		<pubDate>Thu, 21 May 2009 14:57:21 +0000</pubDate>
		<dc:creator>T.G.</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://farmer1992.phpsix.net/?p=517</guid>
		<description><![CDATA[最近一个php输出的网页  经常半截 开始以为是没读完 经过严格检查发现 是php中开了一个 巨大的数组 然后 页面502了 解决当然是 改进算法 避免使用过多内存了…… 哎 有些人的代码就是一锅粥 根本不让看 还开那么大数组害人]]></description>
			<content:encoded><![CDATA[<p>最近一个php输出的网页  经常半截</p>
<p>开始以为是没读完</p>
<p>经过严格检查发现 是php中开了一个 巨大的数组 然后 页面502了</p>
<p>解决当然是 改进算法 避免使用过多内存了……</p>
<p>哎 有些人的代码就是一锅粥 根本不让看 还开那么大数组害人</p>
]]></content:encoded>
			<wfw:commentRss>http://tgic.me/2009/05/21/php%e8%be%93%e5%87%ba%e4%bf%a1%e6%81%af%e4%b8%8d%e5%85%a8/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>被时差给搞了</title>
		<link>http://tgic.me/2009/05/18/%e8%a2%ab%e6%97%b6%e5%b7%ae%e7%bb%99%e6%90%9e%e4%ba%86/</link>
		<comments>http://tgic.me/2009/05/18/%e8%a2%ab%e6%97%b6%e5%b7%ae%e7%bb%99%e6%90%9e%e4%ba%86/#comments</comments>
		<pubDate>Mon, 18 May 2009 04:17:31 +0000</pubDate>
		<dc:creator>T.G.</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://farmer1992.phpsix.net/?p=512</guid>
		<description><![CDATA[今天被时差给搞了 太狠毒了 unix时间都不可靠 救命啊…… 以后不要再犯错误了]]></description>
			<content:encoded><![CDATA[<p>今天被时差给搞了</p>
<p>太狠毒了 unix时间都不可靠</p>
<p>救命啊……</p>
<p>以后不要再犯错误了</p>
]]></content:encoded>
			<wfw:commentRss>http://tgic.me/2009/05/18/%e8%a2%ab%e6%97%b6%e5%b7%ae%e7%bb%99%e6%90%9e%e4%ba%86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

