<?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: PHP的GET/POST等大变量生成过程</title>
	<atom:link href="http://www.laruence.com/2008/11/07/581.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.laruence.com/2008/11/07/581.html</link>
	<description>PHP应用,PHP源码分析,Zend引擎分析,Web相关技术研究,Web技术分享 - 左手代码 右手诗</description>
	<lastBuildDate>Thu, 09 Sep 2010 03:06:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: 深入理解PHP原理之变量生命期(一) &#124; haohtml&#39;s blog</title>
		<link>http://www.laruence.com/2008/11/07/581.html/comment-page-1#comment-2980</link>
		<dc:creator>深入理解PHP原理之变量生命期(一) &#124; haohtml&#39;s blog</dc:creator>
		<pubDate>Sun, 25 Jul 2010 07:38:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=581#comment-2980</guid>
		<description>[...] 那么, 我们今天就重点关注下, Query String是如何构建成_GET数组的(关于GET变量的生成, 请一并阅读我之前的文章: “PHP的GET/POST等大变量生成过程“): [...]</description>
		<content:encoded><![CDATA[<p>[...] 那么, 我们今天就重点关注下, Query String是如何构建成_GET数组的(关于GET变量的生成, 请一并阅读我之前的文章: “PHP的GET/POST等大变量生成过程“): [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dyfire</title>
		<link>http://www.laruence.com/2008/11/07/581.html/comment-page-1#comment-2884</link>
		<dc:creator>dyfire</dc:creator>
		<pubDate>Mon, 05 Jul 2010 07:38:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=581#comment-2884</guid>
		<description>楼主很强～。～</description>
		<content:encoded><![CDATA[<p>楼主很强～。～</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 深入理解PHP原理之变量生命期(一) &#124; 风雪之隅</title>
		<link>http://www.laruence.com/2008/11/07/581.html/comment-page-1#comment-2389</link>
		<dc:creator>深入理解PHP原理之变量生命期(一) &#124; 风雪之隅</dc:creator>
		<pubDate>Sat, 26 Dec 2009 13:11:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=581#comment-2389</guid>
		<description>[...] 那么, 我们今天就重点关注下, Query String是如何构建成_GET数组的(关于GET变量的生成, 可以参看我之前的文章: &#8220;PHP的GET/POST等大变量生成过程&#8220;): [...]</description>
		<content:encoded><![CDATA[<p>[...] 那么, 我们今天就重点关注下, Query String是如何构建成_GET数组的(关于GET变量的生成, 可以参看我之前的文章: &#8220;PHP的GET/POST等大变量生成过程&#8220;): [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 个人简历</title>
		<link>http://www.laruence.com/2008/11/07/581.html/comment-page-1#comment-1873</link>
		<dc:creator>个人简历</dc:creator>
		<pubDate>Thu, 16 Jul 2009 03:59:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=581#comment-1873</guid>
		<description>贵站做的很好</description>
		<content:encoded><![CDATA[<p>贵站做的很好</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: z.En</title>
		<link>http://www.laruence.com/2008/11/07/581.html/comment-page-1#comment-1845</link>
		<dc:creator>z.En</dc:creator>
		<pubDate>Mon, 13 Jul 2009 06:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=581#comment-1845</guid>
		<description>你简直就是我偶像</description>
		<content:encoded><![CDATA[<p>你简直就是我偶像</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jackywdx</title>
		<link>http://www.laruence.com/2008/11/07/581.html/comment-page-1#comment-345</link>
		<dc:creator>jackywdx</dc:creator>
		<pubDate>Fri, 14 Nov 2008 08:09:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=581#comment-345</guid>
		<description>呵呵，找到了，在php_globals.h里面定义的。
#ifdef ZTS
# define PG(v) TSRMG(core_globals_id, php_core_globals *, v)
extern PHPAPI int core_globals_id;
#else
# define PG(v) (core_globals.v)
extern ZEND_API struct _php_core_globals core_globals;
#endif</description>
		<content:encoded><![CDATA[<p>呵呵，找到了，在php_globals.h里面定义的。<br />
#ifdef ZTS<br />
# define PG(v) TSRMG(core_globals_id, php_core_globals *, v)<br />
extern PHPAPI int core_globals_id;<br />
#else<br />
# define PG(v) (core_globals.v)<br />
extern ZEND_API struct _php_core_globals core_globals;<br />
#endif</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 雪候鸟</title>
		<link>http://www.laruence.com/2008/11/07/581.html/comment-page-1#comment-343</link>
		<dc:creator>雪候鸟</dc:creator>
		<pubDate>Fri, 14 Nov 2008 07:47:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=581#comment-343</guid>
		<description>PG是为了兼容线程安全模式的一种对php_globals的访问包装， 定义在 main/php_globals.h(php 5.x)</description>
		<content:encoded><![CDATA[<p>PG是为了兼容线程安全模式的一种对php_globals的访问包装， 定义在 main/php_globals.h(php 5.x)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jackywdx</title>
		<link>http://www.laruence.com/2008/11/07/581.html/comment-page-1#comment-341</link>
		<dc:creator>jackywdx</dc:creator>
		<pubDate>Fri, 14 Nov 2008 07:28:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=581#comment-341</guid>
		<description>想问个问题，PG作什么用的。
宏的定义在哪，一直找不到</description>
		<content:encoded><![CDATA[<p>想问个问题，PG作什么用的。<br />
宏的定义在哪，一直找不到</p>
]]></content:encoded>
	</item>
</channel>
</rss>
