<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:coop="http://www.google.com/coop/namespace"
	>

<channel>
	<title>php-Phreaks</title>
	<atom:link href="http://php-phreaks.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://php-phreaks.com</link>
	<description>PHP security, development, design, and review discussions.</description>
	<lastBuildDate>Sun, 10 Jan 2010 10:30:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>&#8220;What Is Web 2.0&#8243; by Tim O`Reilly &#8211; Review</title>
		<link>http://php-phreaks.com/2010/01/10/what-is-web-2-0-by-tim-oreilly-review/</link>
		<comments>http://php-phreaks.com/2010/01/10/what-is-web-2-0-by-tim-oreilly-review/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 10:30:25 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[2.0]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=304</guid>
		<description><![CDATA[This may be a review of an old article, however I hear the misuse of the term too often not to bring it back to light.  Sites tout there mystical ascension to &#8220;Web 2.0&#8243; hood, labeling there site with &#8220;New 2.0 features!&#8221;, while the key components of the concept are missing.  Tim O`Reilly]]></description>
		<wfw:commentRss>http://php-phreaks.com/2010/01/10/what-is-web-2-0-by-tim-oreilly-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Review]]></coop:keyword>
		<coop:keyword><![CDATA[2.0]]></coop:keyword>
	</item>
		<item>
		<title>Revisiting the BASICs</title>
		<link>http://php-phreaks.com/2009/09/26/revisiting-the-basics/</link>
		<comments>http://php-phreaks.com/2009/09/26/revisiting-the-basics/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 10:18:21 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Beginner]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=270</guid>
		<description><![CDATA[ Sitting back, I&#8217;m remembering days when I spent hours trying to write some of the simplest code; appreciating what I went through to attain my current skill level, looking back upon the frustrations that make me smile.  Many years and programs ago (it was 1986, I was 6 going on 7), I came to]]></description>
		<wfw:commentRss>http://php-phreaks.com/2009/09/26/revisiting-the-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Beginner]]></coop:keyword>
	</item>
		<item>
		<title>Lambda Functions, Closures, and __invoke</title>
		<link>http://php-phreaks.com/2009/04/26/lambda-functions-closures-and-__invoke/</link>
		<comments>http://php-phreaks.com/2009/04/26/lambda-functions-closures-and-__invoke/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 18:46:22 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[PHP 5.3]]></category>
		<category><![CDATA[Closure]]></category>
		<category><![CDATA[Lambda]]></category>
		<category><![CDATA[__invoke]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=243</guid>
		<description><![CDATA[Previously, lambda-style functions were only possible by using create_function.  This has one major disadvantage, the function is compiled at run time, opcode caches can&#8217;t cache the function at compile time.

&#60;?php
&#160;
$func = create_function&#40;'$a,$b', 'return &#34;ln($a) + ln($b) = &#34; . log($a * $b);'&#41;;
echo &#34;New anonymous function: $func\n&#34;;
echo $newfunc&#40;2, M_E&#41; . &#34;\n&#34;;
// New anonymous function: lambda_1
//]]></description>
		<wfw:commentRss>http://php-phreaks.com/2009/04/26/lambda-functions-closures-and-__invoke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[PHP 5.3]]></coop:keyword>
		<coop:keyword><![CDATA[Closure]]></coop:keyword>
		<coop:keyword><![CDATA[Lambda]]></coop:keyword>
		<coop:keyword><![CDATA[__invoke]]></coop:keyword>
	</item>
		<item>
		<title>Late Static Bindings</title>
		<link>http://php-phreaks.com/2009/03/27/late-static-bindings/</link>
		<comments>http://php-phreaks.com/2009/03/27/late-static-bindings/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 13:28:24 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[PHP 5.3]]></category>
		<category><![CDATA[Late Static Bindings]]></category>
		<category><![CDATA[LSB]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=225</guid>
		<description><![CDATA[PHP 5.3 implements a feature called &#8220;late static bindings&#8221; that has been in the works since the  PHP Developers Meeting that took place in November 2005 in Paris. This feature resolves an issue of inheritance, used to reference the called class in a context of static inheritance. Prior to version 5.3 a problem existed]]></description>
		<wfw:commentRss>http://php-phreaks.com/2009/03/27/late-static-bindings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Intermediate]]></coop:keyword>
		<coop:keyword><![CDATA[PHP 5.3]]></coop:keyword>
		<coop:keyword><![CDATA[Late Static Bindings]]></coop:keyword>
		<coop:keyword><![CDATA[LSB]]></coop:keyword>
	</item>
		<item>
		<title>What&#8217;s new in PHP 5.3</title>
		<link>http://php-phreaks.com/2009/03/27/whats-new-in-php-53-2/</link>
		<comments>http://php-phreaks.com/2009/03/27/whats-new-in-php-53-2/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 12:56:57 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[PHP 5.3]]></category>
		<category><![CDATA[Version Release]]></category>
		<category><![CDATA[Q1 2009]]></category>
		<category><![CDATA[Release]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=217</guid>
		<description><![CDATA[With PHP 5.3 slated for release near the end of April (Q1 2009), it&#8217;s time to start looking at the new improvements being implemented. Version 5.3 was originally known as &#8220;PHP 6 without Unicode support&#8221;, but there are many new features being implemented in this release that have been on the development table for a]]></description>
		<wfw:commentRss>http://php-phreaks.com/2009/03/27/whats-new-in-php-53-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[News]]></coop:keyword>
		<coop:keyword><![CDATA[PHP 5.3]]></coop:keyword>
		<coop:keyword><![CDATA[Version Release]]></coop:keyword>
		<coop:keyword><![CDATA[Q1 2009]]></coop:keyword>
		<coop:keyword><![CDATA[Release]]></coop:keyword>
	</item>
		<item>
		<title>Announcing the Release of PHP 5.3 Candidate 1</title>
		<link>http://php-phreaks.com/2009/03/26/announcing-the-release-of-php-53-candidate-1/</link>
		<comments>http://php-phreaks.com/2009/03/26/announcing-the-release-of-php-53-candidate-1/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 10:01:00 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[PHP 5.3]]></category>
		<category><![CDATA[Version Release]]></category>
		<category><![CDATA[Release]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=205</guid>
		<description><![CDATA[The latest release of PHP (5.3.0RC1) is the final phase in a major improvement in the 5.X series.  The PHP 5.3.X will eventually obsolete the 5.2.X branch of PHP; all users, primarily those using earlier version 5 releases, are advised to test this release for backwards compatibility.  There is an upgrading guide available]]></description>
		<wfw:commentRss>http://php-phreaks.com/2009/03/26/announcing-the-release-of-php-53-candidate-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[PHP 5.3]]></coop:keyword>
		<coop:keyword><![CDATA[Version Release]]></coop:keyword>
		<coop:keyword><![CDATA[Release]]></coop:keyword>
	</item>
		<item>
		<title>Namespaces</title>
		<link>http://php-phreaks.com/2009/03/10/namespaces/</link>
		<comments>http://php-phreaks.com/2009/03/10/namespaces/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 02:46:21 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[PHP 5.3]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Namespace]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=157</guid>
		<description><![CDATA[Namespace has been used in programming languages for quite a few years.  Java uses them extensively, and many people have complained about the lack of namespace in PHP.  Namespace was initially slated for PHP 5.0, but due to difficulties with its implementation, integration into the code base was postponed to version 5.3. With]]></description>
		<wfw:commentRss>http://php-phreaks.com/2009/03/10/namespaces/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
			<coop:keyword><![CDATA[Intermediate]]></coop:keyword>
		<coop:keyword><![CDATA[Optimization]]></coop:keyword>
		<coop:keyword><![CDATA[PHP 5.3]]></coop:keyword>
		<coop:keyword><![CDATA[Tutorial]]></coop:keyword>
		<coop:keyword><![CDATA[Namespace]]></coop:keyword>
	</item>
		<item>
		<title>PHP 5.2.7 removed from distribution</title>
		<link>http://php-phreaks.com/2008/12/09/php-527-removed-from-distribution/</link>
		<comments>http://php-phreaks.com/2008/12/09/php-527-removed-from-distribution/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 15:27:53 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Version Release]]></category>
		<category><![CDATA[5.2.7]]></category>
		<category><![CDATA[5.2.8]]></category>
		<category><![CDATA[magic_quotes]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php.ini]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=172</guid>
		<description><![CDATA[On December 7th, only days after the release of PHP 5.2.7, PHP.net issued a notice that the 5.2.7 release was no longer available due to a major bug that affects security; requesting a degrade to the 5.2.6 version temporarily. On the 8th, they had the new PHP 5.2.8 release where they explained the fix.
As stated]]></description>
		<wfw:commentRss>http://php-phreaks.com/2008/12/09/php-527-removed-from-distribution/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
			<coop:keyword><![CDATA[News]]></coop:keyword>
		<coop:keyword><![CDATA[Version Release]]></coop:keyword>
		<coop:keyword><![CDATA[5.2.7]]></coop:keyword>
		<coop:keyword><![CDATA[5.2.8]]></coop:keyword>
		<coop:keyword><![CDATA[magic_quotes]]></coop:keyword>
		<coop:keyword><![CDATA[php]]></coop:keyword>
		<coop:keyword><![CDATA[php.ini]]></coop:keyword>
	</item>
		<item>
		<title>PHP 5.3 alpha3 now released</title>
		<link>http://php-phreaks.com/2008/12/06/php-53-alpha3-now-released/</link>
		<comments>http://php-phreaks.com/2008/12/06/php-53-alpha3-now-released/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 20:21:58 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[PHP 5.3]]></category>
		<category><![CDATA[Version Release]]></category>
		<category><![CDATA[PHP 5]]></category>
		<category><![CDATA[Q1 2009]]></category>
		<category><![CDATA[QA]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=167</guid>
		<description><![CDATA[After a few years of PHP version 5, the developers have released the final stage of the 5.3 testing. This release is for development review not for production. According to the release plan, a stable release is expected sometime around the end of Q1 2009.
Excerpt from PHP.net 04-Dec-2008 news:
Several new features have already been documented]]></description>
		<wfw:commentRss>http://php-phreaks.com/2008/12/06/php-53-alpha3-now-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[News]]></coop:keyword>
		<coop:keyword><![CDATA[PHP 5.3]]></coop:keyword>
		<coop:keyword><![CDATA[Version Release]]></coop:keyword>
		<coop:keyword><![CDATA[PHP 5]]></coop:keyword>
		<coop:keyword><![CDATA[Q1 2009]]></coop:keyword>
		<coop:keyword><![CDATA[QA]]></coop:keyword>
	</item>
		<item>
		<title>Why did the chicken cross the road? &#8211; Ivo Jansch</title>
		<link>http://php-phreaks.com/2008/11/22/why-did-the-chicken-cross-the-road-ivo-jansch/</link>
		<comments>http://php-phreaks.com/2008/11/22/why-did-the-chicken-cross-the-road-ivo-jansch/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 15:06:50 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Joke]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=12</guid>
		<description><![CDATA[So what does the PHP community think about why the chicken crossed the road?
Lukas Smith: &#8220;We should ignore the chicken for now and make sure that the parse-ability, typeability and ide compatibility of what separates this side from the road from the other side is better than the current separator proposal.&#8221; *
Zoe Slattery: &#8220;To ensure]]></description>
		<wfw:commentRss>http://php-phreaks.com/2008/11/22/why-did-the-chicken-cross-the-road-ivo-jansch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Fun]]></coop:keyword>
		<coop:keyword><![CDATA[Joke]]></coop:keyword>
	</item>
		<item>
		<title>Object Oriented PHP Memory Concerns</title>
		<link>http://php-phreaks.com/2008/09/18/object-oriented-php-memory-concerns/</link>
		<comments>http://php-phreaks.com/2008/09/18/object-oriented-php-memory-concerns/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 11:05:20 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[Memory]]></category>
		<category><![CDATA[Object Oriented]]></category>
		<category><![CDATA[OO]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=13</guid>
		<description><![CDATA[On September 17th, 2008, Ryan Campbell wrote:
It’s hard to imagine pushing the limits of object oriented PHP so far that your web servers choke, but the truth is those limits are reached faster than you think. We’ve run some tests over at Wufoo and it turns out that any sort of mass object creation is]]></description>
		<wfw:commentRss>http://php-phreaks.com/2008/09/18/object-oriented-php-memory-concerns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Advanced]]></coop:keyword>
		<coop:keyword><![CDATA[Optimization]]></coop:keyword>
		<coop:keyword><![CDATA[Memory]]></coop:keyword>
		<coop:keyword><![CDATA[Object Oriented]]></coop:keyword>
		<coop:keyword><![CDATA[OO]]></coop:keyword>
	</item>
		<item>
		<title>Is PHP 4 finly over?</title>
		<link>http://php-phreaks.com/2008/09/10/is-php-4-finly-over/</link>
		<comments>http://php-phreaks.com/2008/09/10/is-php-4-finly-over/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 14:32:30 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Version Release]]></category>
		<category><![CDATA[PHP 4]]></category>
		<category><![CDATA[PHP 5]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=15</guid>
		<description><![CDATA[Over a year has passes since the original &#8216;PHP 4 end of life announcement&#8216; on 13-Jul-2007 from PHP.net.  PHP 5 had been out for 3 years and PHP 6 was on its way.  PHP.net was announcing they were threw with PHP 4 support by the end of the year, and crucial security fixes]]></description>
		<wfw:commentRss>http://php-phreaks.com/2008/09/10/is-php-4-finly-over/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Version Release]]></coop:keyword>
		<coop:keyword><![CDATA[PHP 4]]></coop:keyword>
		<coop:keyword><![CDATA[PHP 5]]></coop:keyword>
		<coop:keyword><![CDATA[Security]]></coop:keyword>
		<coop:keyword><![CDATA[Upgrade]]></coop:keyword>
	</item>
		<item>
		<title>Propel drops Creole</title>
		<link>http://php-phreaks.com/2008/08/25/propel-drops-creole/</link>
		<comments>http://php-phreaks.com/2008/08/25/propel-drops-creole/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 15:03:06 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Creole]]></category>
		<category><![CDATA[Database Abstraction Layer]]></category>
		<category><![CDATA[DBAL]]></category>
		<category><![CDATA[Object Persistence Layer]]></category>
		<category><![CDATA[OPL]]></category>
		<category><![CDATA[PDO]]></category>
		<category><![CDATA[PHP Data Object]]></category>
		<category><![CDATA[Propel]]></category>
		<category><![CDATA[SPL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://php-phreaks.com/?p=16</guid>
		<description><![CDATA[In a move towards speed and reliability Propel (an object persistence layer) in it&#8217;s new 1.3.0 version drops its integration of Creole (database abstraction layer) in lue of PHPs new PDO (PHP Data Objects) extension.  This fundamental move establishes leverage for Propel to take further control of PHP 5s new OOP features for its]]></description>
		<wfw:commentRss>http://php-phreaks.com/2008/08/25/propel-drops-creole/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[News]]></coop:keyword>
		<coop:keyword><![CDATA[API]]></coop:keyword>
		<coop:keyword><![CDATA[Creole]]></coop:keyword>
		<coop:keyword><![CDATA[Database Abstraction Layer]]></coop:keyword>
		<coop:keyword><![CDATA[DBAL]]></coop:keyword>
		<coop:keyword><![CDATA[Object Persistence Layer]]></coop:keyword>
		<coop:keyword><![CDATA[OPL]]></coop:keyword>
		<coop:keyword><![CDATA[PDO]]></coop:keyword>
		<coop:keyword><![CDATA[PHP Data Object]]></coop:keyword>
		<coop:keyword><![CDATA[Propel]]></coop:keyword>
		<coop:keyword><![CDATA[SPL]]></coop:keyword>
		<coop:keyword><![CDATA[SQL]]></coop:keyword>
	</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.750 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-10 19:32:22 -->
