<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>D-talk (Entries tagged as php5)</title>
    <link>http://blog.dynom.nl/</link>
    <description>The little things that pop into mind</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.2-beta4 - http://www.s9y.org/</generator>
    
    

<item>
    <title>Imagick driver for Kohana</title>
    <link>http://blog.dynom.nl/archives/Imagick-driver-for-Kohana_20080201_16.html</link>
            <category>KohanaPHP</category>
    
    <comments>http://blog.dynom.nl/archives/Imagick-driver-for-Kohana_20080201_16.html#comments</comments>
    <wfw:comment>http://blog.dynom.nl/wfwcomment.php?cid=16</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.dynom.nl/rss.php?version=2.0&amp;type=comments&amp;cid=16</wfw:commentRss>
    

    <author>nospam@example.com (Mark van der Velden)</author>
    <content:encoded>
    &lt;p&gt;For image manipulation &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.imagemagick.org/&#039;);&quot;  href=&quot;http://www.imagemagick.org/&quot; title=&quot;ImageMagick&quot;&gt;ImageMagick&lt;/a&gt; (IM) is really nice. However IM is not natively supported by PHP. &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/www.kohanaphp.com&#039;);&quot;  href=&quot;http://www.kohanaphp.com&quot; title=&quot;Kohana: swift, secure and light MVC PHP5 framework&quot;&gt;Kohana&lt;/a&gt; supports IM using a shell wrapper simply because that is the only way to support IM without PECL dependancies.&lt;/p&gt;&lt;p&gt;While this means we can&#039;t use &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/pecl.php.net/package/imagick&#039;);&quot;  href=&quot;http://pecl.php.net/package/imagick&quot; title=&quot;Imagick&quot;&gt;Imagick&lt;/a&gt; (the &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/pecl.php.net/&#039;);&quot;  href=&quot;http://pecl.php.net/&quot; title=&quot;The PHP Extension Community Library&quot;&gt;PECL&lt;/a&gt; extension) using the official Kohana release, this doesn&#039;t mean we can&#039;t write our own Kohana Image driver.&lt;br /&gt;Since I have total freedom on my servers I wanted to use Imagick instead of the shell wrapper and wrote a Imagick driver.&lt;/p&gt; &lt;br /&gt;&lt;a href=&quot;http://blog.dynom.nl/archives/Imagick-driver-for-Kohana_20080201_16.html#extended&quot;&gt;Continue reading &quot;Imagick driver for Kohana&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Fri, 01 Feb 2008 11:01:27 +0100</pubDate>
    <guid isPermaLink="false">http://blog.dynom.nl/archives/guid_20080201_16.html</guid>
    <category>im</category>
<category>imagemagick</category>
<category>kohana</category>
<category>php</category>
<category>php5</category>

</item>
<item>
    <title>PHP LSB (Late Static Binding)</title>
    <link>http://blog.dynom.nl/archives/PHP-LSB-Late-Static-Binding_20071021_12.html</link>
            <category>PHP</category>
            <category>PlanetPHP</category>
    
    <comments>http://blog.dynom.nl/archives/PHP-LSB-Late-Static-Binding_20071021_12.html#comments</comments>
    <wfw:comment>http://blog.dynom.nl/wfwcomment.php?cid=12</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.dynom.nl/rss.php?version=2.0&amp;type=comments&amp;cid=12</wfw:commentRss>
    

    <author>nospam@example.com (Mark van der Velden)</author>
    <content:encoded>
    &lt;p&gt;Interesting news about new features in PHP, namely LSB (Late Static Binding).&lt;/p&gt;&lt;p&gt;What this basically means is that you can overload static functions, which is great news for all you singleton lovers out there.&lt;br /&gt;And a nice leap forward in PHP code design, want an example? Read on... &lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt; &lt;br /&gt;&lt;a href=&quot;http://blog.dynom.nl/archives/PHP-LSB-Late-Static-Binding_20071021_12.html#extended&quot;&gt;Continue reading &quot;PHP LSB (Late Static Binding)&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sun, 21 Oct 2007 15:20:52 +0200</pubDate>
    <guid isPermaLink="false">http://blog.dynom.nl/archives/guid_20071021_12.html</guid>
    <category>oo</category>
<category>php</category>
<category>php5</category>

</item>
<item>
    <title>PHP and - not so real - references</title>
    <link>http://blog.dynom.nl/archives/PHP-and-not-so-real-references_20070804_4.html</link>
            <category>PHP</category>
    
    <comments>http://blog.dynom.nl/archives/PHP-and-not-so-real-references_20070804_4.html#comments</comments>
    <wfw:comment>http://blog.dynom.nl/wfwcomment.php?cid=4</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://blog.dynom.nl/rss.php?version=2.0&amp;type=comments&amp;cid=4</wfw:commentRss>
    

    <author>nospam@example.com (Mark van der Velden)</author>
    <content:encoded>
    &lt;p&gt;A while ago I read somewhere about the (what I thought was a neat feature of PHP5) auto-references in PHP5.
Bottom line is that it&#039;s best to not self-define referencing because the engine outsmarts you!

Sara Golemon wrote a nice entry in her log here: &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/blog.libssh2.org/index.php?/archives/51-Youre-being-lied-to..html&#039;);&quot;  href=&quot;http://blog.libssh2.org/index.php?/archives/51-Youre-being-lied-to..html&quot; mce_href=&quot;http://blog.libssh2.org/index.php?/archives/51-Youre-being-lied-to..html&quot; target=&quot;_blank&quot; title=&quot;Now, to be fair, it&#039;s an innocent lie, since objects do behave in a reference-like manner, but references are NOT what they are.&quot;&gt;http://blog.libssh2.org/index.php?/archives/51-Youre-being-lied-to..html&lt;/a&gt;.
Might not be entirely true (since there is a difference), but until I read deeper into this matter I&#039;ll take these informative words as is.

More internal information can be found here: &lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/devzone.zend.com/node/view/id/1024&#039;);&quot;  href=&quot;http://devzone.zend.com/node/view/id/1024&quot; mce_href=&quot;http://devzone.zend.com/node/view/id/1024&quot; target=&quot;_blank&quot; title=&quot;Extension Writing Part III: Resources&quot;&gt;http://devzone.zend.com/node/view/id/1024&lt;/a&gt; Where Sara takes us into the internals of References in her tutorial &quot;&lt;a onclick=&quot;javascript: pageTracker._trackPageview(&#039;/extlink/devzone.zend.com/node/view/id/1024#Heading10&#039;);&quot;  href=&quot;http://devzone.zend.com/node/view/id/1024#Heading10&quot; mce_href=&quot;http://devzone.zend.com/node/view/id/1024#Heading10&quot; target=&quot;_blank&quot; title=&quot;Extension Writing Part III: Resources&quot;&gt;Extension Writing Part III: Resources&lt;/a&gt;&quot;.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Sat, 04 Aug 2007 09:15:00 +0200</pubDate>
    <guid isPermaLink="false">http://blog.dynom.nl/archives/guid_20070804_4.html</guid>
    <category>php</category>
<category>php5</category>
<category>references</category>

</item>

</channel>
</rss>