<?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: SPL autoloading in PHP</title>
	<atom:link href="http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/</link>
	<description>Making a better life for web developer since 2006</description>
	<lastBuildDate>Mon, 08 Mar 2010 12:51:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: 2. Parameter bei spl_autoload_register - php.de</title>
		<link>http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/comment-page-1/#comment-8246</link>
		<dc:creator>2. Parameter bei spl_autoload_register - php.de</dc:creator>
		<pubDate>Mon, 30 Nov 2009 21:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/#comment-8246</guid>
		<description>[...] 2. Parameter bei spl_autoload_register     wo kommt denn der zweite Parameter her und was bedeutet er ? Make Me Pulse - Making a better life for web developer since 2006 [...]</description>
		<content:encoded><![CDATA[<p>[...] 2. Parameter bei spl_autoload_register     wo kommt denn der zweite Parameter her und was bedeutet er ? Make Me Pulse &#8211; Making a better life for web developer since 2006 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PHP Weekly Reader - April 27th 2008 : phpaddiction</title>
		<link>http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/comment-page-1/#comment-2751</link>
		<dc:creator>PHP Weekly Reader - April 27th 2008 : phpaddiction</dc:creator>
		<pubDate>Wed, 30 Apr 2008 06:38:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/#comment-2751</guid>
		<description>[...] SPL autoloading in PHP [...]</description>
		<content:encoded><![CDATA[<p>[...] SPL autoloading in PHP [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Micheal Stevenson</title>
		<link>http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/comment-page-1/#comment-2747</link>
		<dc:creator>Micheal Stevenson</dc:creator>
		<pubDate>Tue, 29 Apr 2008 13:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/#comment-2747</guid>
		<description>Good post - seen something similar here (http://blog.dougalmatthews.com/2008/04/php-__autoload/) but i think your approach is a bit better.</description>
		<content:encoded><![CDATA[<p>Good post &#8211; seen something similar here (<a href="http://blog.dougalmatthews.com/2008/04/php-__autoload/" rel="nofollow">http://blog.dougalmatthews.com/2008/04/php-__autoload/</a>) but i think your approach is a bit better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Girouard</title>
		<link>http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/comment-page-1/#comment-2726</link>
		<dc:creator>Mike Girouard</dc:creator>
		<pubDate>Mon, 21 Apr 2008 23:19:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/#comment-2726</guid>
		<description>This becomes incredibly useful for developers like myself who are stuck on 5.x installs without real namespaces (which won&#039;t be standard until 5.3 I believe).

function load($className) {
    require_once str_replace(&#039;_&#039;, DIRECTORY_SEPARATOR, $className);
}

spl_autoload_register(&#039;load&#039;);</description>
		<content:encoded><![CDATA[<p>This becomes incredibly useful for developers like myself who are stuck on 5.x installs without real namespaces (which won&#8217;t be standard until 5.3 I believe).</p>
<p>function load($className) {<br />
    require_once str_replace(&#8216;_&#8217;, DIRECTORY_SEPARATOR, $className);<br />
}</p>
<p>spl_autoload_register(&#8216;load&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yoda</title>
		<link>http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/comment-page-1/#comment-2725</link>
		<dc:creator>yoda</dc:creator>
		<pubDate>Mon, 21 Apr 2008 20:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/#comment-2725</guid>
		<description>new feature? hm maybe back in 2005 but now its quite standard and everyone should allready be aware of it.</description>
		<content:encoded><![CDATA[<p>new feature? hm maybe back in 2005 but now its quite standard and everyone should allready be aware of it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stuart Herbert</title>
		<link>http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/comment-page-1/#comment-2724</link>
		<dc:creator>Stuart Herbert</dc:creator>
		<pubDate>Mon, 21 Apr 2008 14:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.makemepulse.com/2008/04/21/spl-autoloading-in-php/#comment-2724</guid>
		<description>A simple tip, but a very useful one.  Many thanks for sharing!

Best regards,
Stu</description>
		<content:encoded><![CDATA[<p>A simple tip, but a very useful one.  Many thanks for sharing!</p>
<p>Best regards,<br />
Stu</p>
]]></content:encoded>
	</item>
</channel>
</rss>
