<?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/"
	>

<channel>
	<title>Norm 2782 &#187; Daydreaming</title>
	<atom:link href="http://www.norm2782.com/category/dreaming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.norm2782.com</link>
	<description>Why are you here?</description>
	<lastBuildDate>Sat, 07 Mar 2009 08:03:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Properties in PHP</title>
		<link>http://www.norm2782.com/2009/01/properties-in-php/</link>
		<comments>http://www.norm2782.com/2009/01/properties-in-php/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 23:02:54 +0000</pubDate>
		<dc:creator>norm2782</dc:creator>
				<category><![CDATA[Daydreaming]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.norm2782.com/?p=8</guid>
		<description><![CDATA[A while ago Dynom from #php_bnl pointed me to an interesting entry on the PHP 5.3 wiki page. In the &#8220;Future PHP releases&#8221; sections there&#8217;s an entry called &#8220;29. “real” properties with attached getters and setters&#8221;. Personally I can&#8217;t wait for this. Hopefully it will look something like ActionScript 3&#8242;s properties: &#60;?php class Bar { [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago Dynom from #php_bnl pointed me to an interesting entry on the <a title="PHP 5.3 wiki page" href="http://wiki.php.net/todo/php53">PHP 5.3 wiki page</a>. In the &#8220;Future PHP releases&#8221; sections there&#8217;s an entry called &#8220;29. “real” properties with attached getters and setters&#8221;. Personally I can&#8217;t wait for this. Hopefully it will look something like ActionScript 3&#8242;s properties:</p>
<pre name="code" class="php:nogutter">
&lt;?php
class Bar
{
    private $_foo = 'foo';

    public function get foo()
    {
        return $this->_foo;
    }

    public function set foo($fooString)
    {
        $this->_foo = $fooString;
    }
}

$bar = new Bar();
$bar->foo = 'baz';
echo $bar->foo; // prints baz
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.norm2782.com/2009/01/properties-in-php/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
