<?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源码分析之Global关键字</title>
	<atom:link href="http://www.laruence.com/2008/08/24/377.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.laruence.com/2008/08/24/377.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: 雪候鸟</title>
		<link>http://www.laruence.com/2008/08/24/377.html/comment-page-1#comment-92</link>
		<dc:creator>雪候鸟</dc:creator>
		<pubDate>Sun, 24 Aug 2008 18:42:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=377#comment-92</guid>
		<description>恩，因为刚才我发现我的思路可能有点问题，所以又重新验证了一下，这个过程中怕误导别人，就先给隐藏了。 现在好了。</description>
		<content:encoded><![CDATA[<p>恩，因为刚才我发现我的思路可能有点问题，所以又重新验证了一下，这个过程中怕误导别人，就先给隐藏了。 现在好了。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blankyao</title>
		<link>http://www.laruence.com/2008/08/24/377.html/comment-page-1#comment-91</link>
		<dc:creator>blankyao</dc:creator>
		<pubDate>Sun, 24 Aug 2008 18:11:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=377#comment-91</guid>
		<description>那篇讲多重继承的bug的文章呢？只在阅读器上看到了....</description>
		<content:encoded><![CDATA[<p>那篇讲多重继承的bug的文章呢？只在阅读器上看到了&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 雪候鸟</title>
		<link>http://www.laruence.com/2008/08/24/377.html/comment-page-1#comment-87</link>
		<dc:creator>雪候鸟</dc:creator>
		<pubDate>Sun, 24 Aug 2008 11:47:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=377#comment-87</guid>
		<description>这个问题确实奇怪， 一层继承的时候就没有问题。估计是PHP5的一个bug。
回头我研究研究。</description>
		<content:encoded><![CDATA[<p>这个问题确实奇怪， 一层继承的时候就没有问题。估计是PHP5的一个bug。<br />
回头我研究研究。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guoxiaod</title>
		<link>http://www.laruence.com/2008/08/24/377.html/comment-page-1#comment-86</link>
		<dc:creator>guoxiaod</dc:creator>
		<pubDate>Sun, 24 Aug 2008 11:20:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=377#comment-86</guid>
		<description>再发一边。
&lt;?php
class a extends b {
  public function hello(){echo &quot;ok1&quot;;}
};
class b extends c {
  public function hello(){echo &quot;ok2&quot;;}
};
class c {
  public function hello (){echo &quot;ok3&quot;;}
};


$a  = new a();
$a-&gt;hello();</description>
		<content:encoded><![CDATA[<p>再发一边。<br />
&lt;?php<br />
class a extends b {<br />
  public function hello(){echo &#8220;ok1&#8243;;}<br />
};<br />
class b extends c {<br />
  public function hello(){echo &#8220;ok2&#8243;;}<br />
};<br />
class c {<br />
  public function hello (){echo &#8220;ok3&#8243;;}<br />
};</p>
<p>$a  = new a();<br />
$a-&gt;hello();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guoxiaod</title>
		<link>http://www.laruence.com/2008/08/24/377.html/comment-page-1#comment-85</link>
		<dc:creator>guoxiaod</dc:creator>
		<pubDate>Sun, 24 Aug 2008 11:20:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=377#comment-85</guid>
		<description>哎，居然，把 &lt;? 过滤掉了。</description>
		<content:encoded><![CDATA[<p>哎，居然，把 &lt;? 过滤掉了。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guoxiaod</title>
		<link>http://www.laruence.com/2008/08/24/377.html/comment-page-1#comment-84</link>
		<dc:creator>guoxiaod</dc:creator>
		<pubDate>Sun, 24 Aug 2008 11:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.laruence.com/?p=377#comment-84</guid>
		<description>之前我们遇到了一个问题：
关于PHP class 的顺序的问题，问题如下:
hello();

提示找不到 class b .

这个问题，是什么原因呢?</description>
		<content:encoded><![CDATA[<p>之前我们遇到了一个问题：<br />
关于PHP class 的顺序的问题，问题如下:<br />
hello();</p>
<p>提示找不到 class b .</p>
<p>这个问题，是什么原因呢?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
