<?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>Well, at least we got the duck. &#187; php</title>
	<atom:link href="http://ingol.nl/blog/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://ingol.nl/blog</link>
	<description></description>
	<lastBuildDate>Wed, 14 Jul 2010 23:01:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>TIP: Get rid of &#8220;It is not safe to rely on the system&#8217;s timezone settings.&#8221;</title>
		<link>http://ingol.nl/blog/2010/04/08/tip-get-rid-of-it-is-not-safe-to-rely-on-the-systems-timezone-settings/</link>
		<comments>http://ingol.nl/blog/2010/04/08/tip-get-rid-of-it-is-not-safe-to-rely-on-the-systems-timezone-settings/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 10:44:22 +0000</pubDate>
		<dc:creator>Reboot</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[timezone]]></category>
		<category><![CDATA[warning]]></category>

		<guid isPermaLink="false">http://ingol.nl/blog/?p=370</guid>
		<description><![CDATA[Warning: strtotime() [function.strtotime]: It is not safe to rely on the system&#8217;s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier.
; Copy this line into the php.ini
; http://php.net/manual/en/timezones.php
date.timezone [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Warning: strtotime() [function.strtotime]: It is not safe to rely on the system&#8217;s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier.</p></blockquote>
<p>; Copy this line into the php.ini<br />
; http://php.net/manual/en/timezones.php<br />
date.timezone = &#8220;Europe/Amsterdam&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://ingol.nl/blog/2010/04/08/tip-get-rid-of-it-is-not-safe-to-rely-on-the-systems-timezone-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Code Generator on Google Code</title>
		<link>http://ingol.nl/blog/2009/09/17/zend-code-generator-on-google-code/</link>
		<comments>http://ingol.nl/blog/2009/09/17/zend-code-generator-on-google-code/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 18:00:27 +0000</pubDate>
		<dc:creator>Reboot</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[codegeneration]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://ingol.nl/blog/?p=3</guid>
		<description><![CDATA[I started a project to create a zend code generator. It&#8217;s a pretty basic 3 layer model that it generates right now, tests included. Take a look at http://code.google.com/p/zend-code-generator/
]]></description>
			<content:encoded><![CDATA[<p>I started a project to create a zend code generator. It&#8217;s a pretty basic 3 layer model that it generates right now, tests included. Take a look at http://code.google.com/p/zend-code-generator/</p>
]]></content:encoded>
			<wfw:commentRss>http://ingol.nl/blog/2009/09/17/zend-code-generator-on-google-code/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Quick and Dirty RegEx Tester in Zend Framework.</title>
		<link>http://ingol.nl/blog/2009/08/19/quick-and-dirty-regex-tester-in-zend-framework/</link>
		<comments>http://ingol.nl/blog/2009/08/19/quick-and-dirty-regex-tester-in-zend-framework/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 11:36:56 +0000</pubDate>
		<dc:creator>Reboot</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://ingol.nl/blog/?p=209</guid>
		<description><![CDATA[1 public function indexAction()
2      {
3           Zend_Layout::startMvc();
4           self::getFrontController ()-&#62;setParam ( &#8220;noViewRenderer&#8221;, true );
5
6           $subject = $this-&#62;_getParam(&#8220;subject&#8221;,&#8221;");
7      [...]]]></description>
			<content:encoded><![CDATA[<p>1 public function indexAction()<br />
2      {<br />
3           Zend_Layout::startMvc();<br />
4           self::getFrontController ()-&gt;setParam ( &#8220;noViewRenderer&#8221;, true );<br />
5<br />
6           $subject = $this-&gt;_getParam(&#8220;subject&#8221;,&#8221;");<br />
7           $pattern = $this-&gt;_getParam(&#8220;pattern&#8221;,&#8221;//&#8221;);<br />
8           $result = preg_match_all($pattern, $subject, $matches);<br />
9<br />
10           $form = new Zend_Form();<br />
11           $subjectElement = new Zend_Form_Element_Text(&#8220;subject&#8221;);<br />
12           $subjectElement-&gt;setValue($subject);<br />
13           $form-&gt;addElement($subjectElement);<br />
14<br />
15           $patternElement = new Zend_Form_Element_Text(&#8220;pattern&#8221;);<br />
16           $patternElement-&gt;setValue($pattern);<br />
17           $form-&gt;addElement($patternElement);<br />
18<br />
19           $form-&gt;addElement(&#8220;submit&#8221;,&#8221;send&#8221;);<br />
20<br />
21           echo $form;<br />
22           echo Zend_Json::encode($matches);<br />
23      }</p>
<p>Thanks for the html conversion of this code:<br />
<a href="http://www.phpdebutant.com/archive/PHP-code-to-HTML-conversion/PHP%20code%20to%20HTML%20conversion.php">http://www.phpdebutant.com</a></p>
<p>Regex Tutorial/Reference:<br />
<a href="http://www.phpro.org/tutorials/Introduction-to-PHP-Regex.html">http://www.phpro.org/tutorials/Introduction-to-PHP-Regex.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ingol.nl/blog/2009/08/19/quick-and-dirty-regex-tester-in-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Favicon PHP Proxy.</title>
		<link>http://ingol.nl/blog/2009/07/09/google-favicon-php-proxy/</link>
		<comments>http://ingol.nl/blog/2009/07/09/google-favicon-php-proxy/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 11:34:28 +0000</pubDate>
		<dc:creator>Reboot</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://ingol.nl/blog/?p=207</guid>
		<description><![CDATA[A little code snippet to fetch and cache favicons via the google s2 favicon service.
It uses the PHP Zend framework to store and retrieve the favicons from a (MySQL) database &#8230;
http://ingol.nl/code/FaviconProxy.htm
]]></description>
			<content:encoded><![CDATA[<p>A little code snippet to fetch and cache favicons via the google s2 favicon service.<br />
It uses the PHP Zend framework to store and retrieve the favicons from a (MySQL) database &#8230;</p>
<p><a href="http://ingol.nl/code/FaviconProxy.htm">http://ingol.nl/code/FaviconProxy.htm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ingol.nl/blog/2009/07/09/google-favicon-php-proxy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
