<?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: Using PHP Namespaces</title>
	<atom:link href="http://www.willfitch.com/using-php-namespaces.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.willfitch.com/using-php-namespaces.html</link>
	<description>programming, techniques and other stuff I like</description>
	<lastBuildDate>Fri, 14 May 2010 00:40:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: sagar</title>
		<link>http://www.willfitch.com/using-php-namespaces.html/comment-page-1#comment-8336</link>
		<dc:creator>sagar</dc:creator>
		<pubDate>Thu, 17 Sep 2009 20:00:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpfever.com/?p=49#comment-8336</guid>
		<description>Thanks !! great article ........</description>
		<content:encoded><![CDATA[<p>Thanks !! great article &#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: enterx</title>
		<link>http://www.willfitch.com/using-php-namespaces.html/comment-page-1#comment-4372</link>
		<dc:creator>enterx</dc:creator>
		<pubDate>Sat, 20 Dec 2008 14:56:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpfever.com/?p=49#comment-4372</guid>
		<description>require(&#039;the_file_above.php&#039;);  //ROFL!!!!</description>
		<content:encoded><![CDATA[<p>require(&#8216;the_file_above.php&#8217;);  //ROFL!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PHP Namespace Update &#124; Will Fitch's Blog</title>
		<link>http://www.willfitch.com/using-php-namespaces.html/comment-page-1#comment-3967</link>
		<dc:creator>PHP Namespace Update &#124; Will Fitch's Blog</dc:creator>
		<pubDate>Mon, 10 Nov 2008 03:50:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpfever.com/?p=49#comment-3967</guid>
		<description>[...] the writing of my namespace post things have changed. The voting is in (so it&#8217;s said) and the new namespace separator is the [...]</description>
		<content:encoded><![CDATA[<p>[...] the writing of my namespace post things have changed. The voting is in (so it&#8217;s said) and the new namespace separator is the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loko Pokon &#187; Using PHP Namespaces</title>
		<link>http://www.willfitch.com/using-php-namespaces.html/comment-page-1#comment-3067</link>
		<dc:creator>Loko Pokon &#187; Using PHP Namespaces</dc:creator>
		<pubDate>Wed, 25 Jun 2008 13:39:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpfever.com/?p=49#comment-3067</guid>
		<description>[...] read more &#124; digg story [...]</description>
		<content:encoded><![CDATA[<p>[...] read more | digg story [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kas jauns gaidāms PHP6 un PHP5.3 ? &#124; Endija Lisovska pieraksti</title>
		<link>http://www.willfitch.com/using-php-namespaces.html/comment-page-1#comment-2809</link>
		<dc:creator>Kas jauns gaidāms PHP6 un PHP5.3 ? &#124; Endija Lisovska pieraksti</dc:creator>
		<pubDate>Fri, 09 May 2008 20:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpfever.com/?p=49#comment-2809</guid>
		<description>[...] Iespējams, ka izteicos neskaidri, tāpēc, ja nav skaidrības kas ir Namespaces iesaku izlasīt šo rakstu. Nav gan labākais raksts, bet man kaut kur pazudušas saite uz vienu citu rakstu. Ja atradīšu - [...]</description>
		<content:encoded><![CDATA[<p>[...] Iespējams, ka izteicos neskaidri, tāpēc, ja nav skaidrības kas ir Namespaces iesaku izlasīt šo rakstu. Nav gan labākais raksts, bet man kaut kur pazudušas saite uz vienu citu rakstu. Ja atradīšu &#8211; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will Fitch</title>
		<link>http://www.willfitch.com/using-php-namespaces.html/comment-page-1#comment-2737</link>
		<dc:creator>Will Fitch</dc:creator>
		<pubDate>Mon, 28 Apr 2008 13:28:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpfever.com/?p=49#comment-2737</guid>
		<description>Hi, Joost.

Well, PHP5 already has an __autoload function (http://us.php.net/__autoload) built-in.  Namespaces can be complimented with autoloading functionality.  The purpose of a namespace is to encapsulate functionality to further differentiate and relate those items, while autoloading simply examines files within the include_path to remove the need to call &quot;require&quot; or &quot;include&quot;.  Namespaces aren&#039;t meant to resolve include problems, although they can for some.  

Personally, I hope PHP&#039;s implementation of namespaces eventually becomes more like C#, with more autoload features built in.</description>
		<content:encoded><![CDATA[<p>Hi, Joost.</p>
<p>Well, PHP5 already has an __autoload function (<a href="http://us.php.net/__autoload" rel="nofollow">http://us.php.net/__autoload</a>) built-in.  Namespaces can be complimented with autoloading functionality.  The purpose of a namespace is to encapsulate functionality to further differentiate and relate those items, while autoloading simply examines files within the include_path to remove the need to call &#8220;require&#8221; or &#8220;include&#8221;.  Namespaces aren&#8217;t meant to resolve include problems, although they can for some.  </p>
<p>Personally, I hope PHP&#8217;s implementation of namespaces eventually becomes more like C#, with more autoload features built in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joost Pluijmers</title>
		<link>http://www.willfitch.com/using-php-namespaces.html/comment-page-1#comment-2735</link>
		<dc:creator>Joost Pluijmers</dc:creator>
		<pubDate>Mon, 28 Apr 2008 08:36:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpfever.com/?p=49#comment-2735</guid>
		<description>Hey Will, I find your article on namespaces verry informative but however have one remark. As I see it you are using namespaces purely as a class loading method. But I don&#039;t see why this is usefull for the Zend Framework as it comes with an extremely usefull autoloading class.

For people that don&#039;t know it, it works somewhat in the following way:
The classname Zend_Db_Table resolves to %include_dir%\Zend\Db\Table.php and returns an object of the Zend_Db_Table present in that file.

Don&#039;t you find that a much more elegant way to resolve including problems? (For the Zend Framework that is)</description>
		<content:encoded><![CDATA[<p>Hey Will, I find your article on namespaces verry informative but however have one remark. As I see it you are using namespaces purely as a class loading method. But I don&#8217;t see why this is usefull for the Zend Framework as it comes with an extremely usefull autoloading class.</p>
<p>For people that don&#8217;t know it, it works somewhat in the following way:<br />
The classname Zend_Db_Table resolves to %include_dir%\Zend\Db\Table.php and returns an object of the Zend_Db_Table present in that file.</p>
<p>Don&#8217;t you find that a much more elegant way to resolve including problems? (For the Zend Framework that is)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AL-Mu'taz Bellah Salahat</title>
		<link>http://www.willfitch.com/using-php-namespaces.html/comment-page-1#comment-2721</link>
		<dc:creator>AL-Mu'taz Bellah Salahat</dc:creator>
		<pubDate>Fri, 25 Apr 2008 17:37:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpfever.com/?p=49#comment-2721</guid>
		<description>Thanks &quot; Will&quot; for this article , this feature for sure will be an added value and will increase the power and flexibility of PHP</description>
		<content:encoded><![CDATA[<p>Thanks &#8221; Will&#8221; for this article , this feature for sure will be an added value and will increase the power and flexibility of PHP</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.willfitch.com/using-php-namespaces.html/comment-page-1#comment-2720</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 25 Apr 2008 17:19:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpfever.com/?p=49#comment-2720</guid>
		<description>Useful stuff, thanks for writing this article.</description>
		<content:encoded><![CDATA[<p>Useful stuff, thanks for writing this article.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
