<?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: How not to pollute the global scope</title>
	<atom:link href="http://elbertf.com/2009/03/php-how-not-to-pollute-the-global-scope/feed/" rel="self" type="application/rss+xml" />
	<link>http://elbertf.com/2009/03/php-how-not-to-pollute-the-global-scope/</link>
	<description>Insights and Updates from a Tech Geek</description>
	<lastBuildDate>Sat, 24 Jul 2010 04:15:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: ElbertF</title>
		<link>http://elbertf.com/2009/03/php-how-not-to-pollute-the-global-scope/comment-page-1/#comment-71</link>
		<dc:creator>ElbertF</dc:creator>
		<pubDate>Mon, 01 Mar 2010 15:28:39 +0000</pubDate>
		<guid isPermaLink="false">http://ElbertF.com/?p=62#comment-71</guid>
		<description>Changed the typo, thanks. I also changed $foo to $this-&gt;foo, why would recursion be a problem?</description>
		<content:encoded><![CDATA[<p>Changed the typo, thanks. I also changed $foo to $this-&gt;foo, why would recursion be a&nbsp;problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: svennson56</title>
		<link>http://elbertf.com/2009/03/php-how-not-to-pollute-the-global-scope/comment-page-1/#comment-69</link>
		<dc:creator>svennson56</dc:creator>
		<pubDate>Mon, 01 Mar 2010 02:09:12 +0000</pubDate>
		<guid isPermaLink="false">http://ElbertF.com/?p=62#comment-69</guid>
		<description>There is a typo cont should be const, also after extensive testing (like 3 min) I found that hello_world(); isn&#039;t public at all... only thing I found is making $this-&gt;foo = new foo($this);&lt;br&gt;&lt;br&gt;but that makes it recursive ... *help*</description>
		<content:encoded><![CDATA[<p>There is a typo cont should be const, also after extensive testing (like 3 min) I found that hello_world(); isn&#39;t public at all&#8230; only thing I found is making $this-&gt;foo = new&nbsp;foo($this);</p>
<p>but that makes it recursive &#8230;&nbsp;*help*</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ElbertF</title>
		<link>http://elbertf.com/2009/03/php-how-not-to-pollute-the-global-scope/comment-page-1/#comment-57</link>
		<dc:creator>ElbertF</dc:creator>
		<pubDate>Sat, 02 May 2009 12:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://ElbertF.com/?p=62#comment-57</guid>
		<description>You&#039;re right, it&#039;s not necessary to pass objects by reference. I updated the post, thanks!</description>
		<content:encoded><![CDATA[<p>You&#39;re right, it&#39;s not necessary to pass objects by reference. I updated the post,&nbsp;thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ElbertF</title>
		<link>http://elbertf.com/2009/03/php-how-not-to-pollute-the-global-scope/comment-page-1/#comment-15</link>
		<dc:creator>ElbertF</dc:creator>
		<pubDate>Sat, 02 May 2009 07:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://ElbertF.com/?p=62#comment-15</guid>
		<description>You&#039;re right, it&#039;s not necessary to pass objects by reference. I updated the post, thanks!</description>
		<content:encoded><![CDATA[<p>You&#39;re right, it&#39;s not necessary to pass objects by reference. I updated the post,&nbsp;thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ElbertF</title>
		<link>http://elbertf.com/2009/03/php-how-not-to-pollute-the-global-scope/comment-page-1/#comment-12</link>
		<dc:creator>ElbertF</dc:creator>
		<pubDate>Sat, 02 May 2009 05:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://ElbertF.com/?p=62#comment-12</guid>
		<description>You&#039;re right, it&#039;s not necessary to send objects by reference. I updated the post, thanks!</description>
		<content:encoded><![CDATA[<p>You&#39;re right, it&#39;s not necessary to send objects by reference. I updated the post,&nbsp;thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Cinel</title>
		<link>http://elbertf.com/2009/03/php-how-not-to-pollute-the-global-scope/comment-page-1/#comment-11</link>
		<dc:creator>Tim Cinel</dc:creator>
		<pubDate>Tue, 28 Apr 2009 11:40:11 +0000</pubDate>
		<guid isPermaLink="false">http://ElbertF.com/?p=62#comment-11</guid>
		<description>Do you need to use the &quot;&amp;&quot; operator to pass a reference? Objects are merely references anyway, right?</description>
		<content:encoded><![CDATA[<p>Do you need to use the &#8220;&#038;&#8221; operator to pass a reference? Objects are merely references anyway,&nbsp;right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CoenJacobs</title>
		<link>http://elbertf.com/2009/03/php-how-not-to-pollute-the-global-scope/comment-page-1/#comment-8</link>
		<dc:creator>CoenJacobs</dc:creator>
		<pubDate>Mon, 30 Mar 2009 17:49:58 +0000</pubDate>
		<guid isPermaLink="false">http://ElbertF.com/?p=62#comment-8</guid>
		<description>Thanks for pointing me to this, even before this article. It really helped me working out my framework more efficiently and still keep the overview in my classes.</description>
		<content:encoded><![CDATA[<p>Thanks for pointing me to this, even before this article. It really helped me working out my framework more efficiently and still keep the overview in my&nbsp;classes.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
