<?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>究竟什么是TSRMLS_CC？上的评论</title>
	<atom:link href="http://www.54chen.com/php-tech/what-is-tsrmls_cc.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.54chen.com/php-tech/what-is-tsrmls_cc.html</link>
	<description>PHP、JAVA、缓存、架构、经验、分享</description>
	<lastBuildDate>Thu, 09 Sep 2010 02:53:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>air max</title>
		<link>http://www.54chen.com/php-tech/what-is-tsrmls_cc.html#comment-13006</link>
		<dc:creator>air max</dc:creator>
		<pubDate>Thu, 26 Aug 2010 07:40:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.54chen.com/?p=216#comment-13006</guid>
		<description>还是不太明白哦……楼上的都是专家啊</description>
		<content:encoded><![CDATA[<p>还是不太明白哦……楼上的都是专家啊</p>
]]></content:encoded>
	</item>
	<item>
		<title>cc0cc</title>
		<link>http://www.54chen.com/php-tech/what-is-tsrmls_cc.html#comment-11848</link>
		<dc:creator>cc0cc</dc:creator>
		<pubDate>Fri, 21 Aug 2009 12:07:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.54chen.com/?p=216#comment-11848</guid>
		<description>define TSRMLS_DC , void ***tsrm_ls
就是这么一个声明，然后在里面用的时候用了TSRMLS_DC，没有什么特别的难理解吧（注意，是连逗号一起的）？</description>
		<content:encoded><![CDATA[<p>define TSRMLS_DC , void ***tsrm_ls<br />
就是这么一个声明，然后在里面用的时候用了TSRMLS_DC，没有什么特别的难理解吧（注意，是连逗号一起的）？</p>
]]></content:encoded>
	</item>
	<item>
		<title>小蔡</title>
		<link>http://www.54chen.com/php-tech/what-is-tsrmls_cc.html#comment-11847</link>
		<dc:creator>小蔡</dc:creator>
		<pubDate>Fri, 21 Aug 2009 07:17:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.54chen.com/?p=216#comment-11847</guid>
		<description>这样理解是比较清楚，但是还是不明白为什么可以这样理解呢？
呵呵，感觉这个弯总是总是转不过来～

还有一个问题，看下面两个函数：
static int inherit_static_prop(zval **p TSRMLS_DC, int num_args, va_list args, const zend_hash_key *key){...}
ZEND_API void zend_do_inheritance(zend_class_entry *ce, zend_class_entry *parent_ce TSRMLS_DC){...}

参数里面的TSRMLS_DC的位置不同会有什么区别呢？如果按上面的理解只是TSRMLS_DC的位置差别而已，是这样的吗？

谢谢～</description>
		<content:encoded><![CDATA[<p>这样理解是比较清楚，但是还是不明白为什么可以这样理解呢？<br />
呵呵，感觉这个弯总是总是转不过来～</p>
<p>还有一个问题，看下面两个函数：<br />
static int inherit_static_prop(zval **p TSRMLS_DC, int num_args, va_list args, const zend_hash_key *key){&#8230;}<br />
ZEND_API void zend_do_inheritance(zend_class_entry *ce, zend_class_entry *parent_ce TSRMLS_DC){&#8230;}</p>
<p>参数里面的TSRMLS_DC的位置不同会有什么区别呢？如果按上面的理解只是TSRMLS_DC的位置差别而已，是这样的吗？</p>
<p>谢谢～</p>
]]></content:encoded>
	</item>
	<item>
		<title>cc0cc</title>
		<link>http://www.54chen.com/php-tech/what-is-tsrmls_cc.html#comment-11846</link>
		<dc:creator>cc0cc</dc:creator>
		<pubDate>Fri, 21 Aug 2009 02:00:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.54chen.com/?p=216#comment-11846</guid>
		<description>这只是一个宏
TSRMLS_DC  , void ***tsrm_ls
如果你这样看 是不是就清楚了呢？
php_myextension_globals_dtor(zend_myextension_globals *myext_globals  , void ***tsrm_ls)</description>
		<content:encoded><![CDATA[<p>这只是一个宏<br />
TSRMLS_DC  , void ***tsrm_ls<br />
如果你这样看 是不是就清楚了呢？<br />
php_myextension_globals_dtor(zend_myextension_globals *myext_globals  , void ***tsrm_ls)</p>
]]></content:encoded>
	</item>
	<item>
		<title>小蔡</title>
		<link>http://www.54chen.com/php-tech/what-is-tsrmls_cc.html#comment-11845</link>
		<dc:creator>小蔡</dc:creator>
		<pubDate>Thu, 20 Aug 2009 18:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.54chen.com/?p=216#comment-11845</guid>
		<description>php_myextension_globals_dtor(zend_myextension_globals *myext_globals TSRMLS_DC)

C语言的语法里，在函数参数可以加一个TSRMLS_DC的东西吗？</description>
		<content:encoded><![CDATA[<p>php_myextension_globals_dtor(zend_myextension_globals *myext_globals TSRMLS_DC)</p>
<p>C语言的语法里，在函数参数可以加一个TSRMLS_DC的东西吗？</p>
]]></content:encoded>
	</item>
	<item>
		<title>[原创]使用postgreSQL+bamboo搭建比lucene方便N倍的全文搜索 第二部分 &#124; 我是陈java&#38;php科学院</title>
		<link>http://www.54chen.com/php-tech/what-is-tsrmls_cc.html#comment-10663</link>
		<dc:creator>[原创]使用postgreSQL+bamboo搭建比lucene方便N倍的全文搜索 第二部分 &#124; 我是陈java&#38;php科学院</dc:creator>
		<pubDate>Fri, 17 Jul 2009 12:56:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.54chen.com/?p=216#comment-10663</guid>
		<description>[...] plainto_tsquery函数却可以提供一个标准的tsquery，如上面的例子，plainto_tsquery会自动加上逻辑&amp;操作符。 SELECT plainto_tsquery(&#8217;english&#8217;, &#8216;Fat  Rats&#8217;); [...]</description>
		<content:encoded><![CDATA[<p>[...] plainto_tsquery函数却可以提供一个标准的tsquery，如上面的例子，plainto_tsquery会自动加上逻辑&amp;操作符。 SELECT plainto_tsquery(&#8217;english&#8217;, &#8216;Fat  Rats&#8217;); [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>blankyao</title>
		<link>http://www.54chen.com/php-tech/what-is-tsrmls_cc.html#comment-195</link>
		<dc:creator>blankyao</dc:creator>
		<pubDate>Thu, 26 Feb 2009 00:26:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.54chen.com/?p=216#comment-195</guid>
		<description>我现在就是这样理解的，以后在应用中慢慢理解吧，呵呵</description>
		<content:encoded><![CDATA[<p>我现在就是这样理解的，以后在应用中慢慢理解吧，呵呵</p>
]]></content:encoded>
	</item>
	<item>
		<title>cc0cc</title>
		<link>http://www.54chen.com/php-tech/what-is-tsrmls_cc.html#comment-194</link>
		<dc:creator>cc0cc</dc:creator>
		<pubDate>Wed, 25 Feb 2009 14:03:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.54chen.com/?p=216#comment-194</guid>
		<description>其实Sara Golemon讲得还是很明白的，可能是我翻译得不够好，你可以简单地理解为在多线程的webserver里避免线程间的变量冲突的一个东西</description>
		<content:encoded><![CDATA[<p>其实Sara Golemon讲得还是很明白的，可能是我翻译得不够好，你可以简单地理解为在多线程的webserver里避免线程间的变量冲突的一个东西</p>
]]></content:encoded>
	</item>
	<item>
		<title>blankyao</title>
		<link>http://www.54chen.com/php-tech/what-is-tsrmls_cc.html#comment-193</link>
		<dc:creator>blankyao</dc:creator>
		<pubDate>Wed, 25 Feb 2009 07:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.54chen.com/?p=216#comment-193</guid>
		<description>还是没搞明白 :(</description>
		<content:encoded><![CDATA[<p>还是没搞明白 <img src='http://www.54chen.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Lighttpd 插件开发方法 &#124; php技术交流&#124;我是陈&#124;54chen.com&#124;PHP基础&#124;PHP进阶&#124;PHP高级&#124;PHP核心&#124;PHP扩展&#124;PHP就是好</title>
		<link>http://www.54chen.com/php-tech/what-is-tsrmls_cc.html#comment-173</link>
		<dc:creator>Lighttpd 插件开发方法 &#124; php技术交流&#124;我是陈&#124;54chen.com&#124;PHP基础&#124;PHP进阶&#124;PHP高级&#124;PHP核心&#124;PHP扩展&#124;PHP就是好</dc:creator>
		<pubDate>Thu, 12 Feb 2009 13:29:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.54chen.com/?p=216#comment-173</guid>
		<description>[...] init_ called when the plugin is loaded cleanup_ called when the plugin is unloaded set_defaults_ called when the configuration has to be processed handle_trigger_ called once a second handle_sighup_ called when the server received a SIGHUP [...]</description>
		<content:encoded><![CDATA[<p>[...] init_ called when the plugin is loaded cleanup_ called when the plugin is unloaded set_defaults_ called when the configuration has to be processed handle_trigger_ called once a second handle_sighup_ called when the server received a SIGHUP [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
