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

<channel>
	<title>Eat my monkeydust &#187; Symfony</title>
	<atom:link href="http://eatmymonkeydust.com/category/symfony/feed" rel="self" type="application/rss+xml" />
	<link>http://eatmymonkeydust.com</link>
	<description>Life, PHP and Symfony - straight from the monkey's mouth</description>
	<pubDate>Sat, 10 May 2008 12:59:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Yaml (yml) file gotchas - trying to set default culture to &#8220;no&#8221;</title>
		<link>http://eatmymonkeydust.com/2008/05/yaml-yml-file-gotchas-trying-to-set-default-culture-to-no/</link>
		<comments>http://eatmymonkeydust.com/2008/05/yaml-yml-file-gotchas-trying-to-set-default-culture-to-no/#comments</comments>
		<pubDate>Fri, 09 May 2008 17:03:49 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Symfony]]></category>

		<category><![CDATA[configuration]]></category>

		<category><![CDATA[i18n]]></category>

		<guid isPermaLink="false">http://eatmymonkeydust.com/?p=24</guid>
		<description><![CDATA[The yaml file parser will attempt to parse all the values, rather than taking them as they are - which in most cases is a good thing, however you must remember to use quotes when the intended output is a string, and the parser may interpret the value otherwise:

default_culture:   en
// No problem, en [...]]]></description>
			<content:encoded><![CDATA[<p>The yaml file parser will attempt to parse all the values, rather than taking them as they are - which in most cases is a good thing, however you must remember to use quotes when the intended output is a string, and the parser may interpret the value otherwise:</p>

<div class="wp_syntax"><div class="code"><pre class="php">default_culture<span style="color: #66cc66;">:</span>   en
<span style="color: #808080; font-style: italic;">// No problem, en is treated as a string </span>
<span style="color: #808080; font-style: italic;">// and /en/ is automatically added to links</span>
&nbsp;
default_culture<span style="color: #66cc66;">:</span> no
<span style="color: #808080; font-style: italic;">// Oops, no is translated by Symfony </span>
<span style="color: #808080; font-style: italic;">// the same way as false, 0 or off, giving it a boolean value!</span>
&nbsp;
default_culture<span style="color: #66cc66;">:</span> <span style="color: #ff0000;">'no'</span>
<span style="color: #808080; font-style: italic;">// That's better, now you will have the intended results.</span></pre></div></div>

<p>The same applies to any yml files that you may have &#8220;keywords&#8221; in, so try to always use quotes round everything that is not boolean, integer, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://eatmymonkeydust.com/2008/05/yaml-yml-file-gotchas-trying-to-set-default-culture-to-no/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to write complex queries using Propel</title>
		<link>http://eatmymonkeydust.com/2008/04/how-to-write-complex-queries-using-propel/</link>
		<comments>http://eatmymonkeydust.com/2008/04/how-to-write-complex-queries-using-propel/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 09:27:22 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Symfony]]></category>

		<category><![CDATA[propel]]></category>

		<category><![CDATA[criteria]]></category>

		<category><![CDATA[generator]]></category>

		<category><![CDATA[query]]></category>

		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://eatmymonkeydust.com/?p=13</guid>
		<description><![CDATA[This is a monster subject, and I spent a long time scratching my head over a few things yesterday, until I came across this site:
http://propel.jondh.me.uk/
It&#8217;s developed by a Symfony user, and allows you to type in sql statements using nested braces for prioritising. The form will then return a nicely formatted block of Propel code.
It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>This is a monster subject, and I spent a long time scratching my head over a few things yesterday, until I came across this site:</p>
<p><a title="Propel Criteria Builder" href="http://propel.jondh.me.uk/" target="_blank">http://propel.jondh.me.uk/</a></p>
<p>It&#8217;s developed by a Symfony user, and allows you to type in sql statements using nested braces for prioritising. The form will then return a nicely formatted block of Propel code.</p>
<p>It&#8217;s not perfect, and it doesn&#8217;t cover everything just yet, but it&#8217;s great for getting some ideas about the structure and how to use various criteria - it&#8217;s also spot on if you are trying to learn Propel and already know how to structure SQL statements.</p>
<p>Discuss this tool and/or contribute on the <a title="Discuss Propel Criteria Builder" href="http://www.symfony-project.org/forum/index.php/m/32692/" target="_blank">Symfony Forum</a></p>
<p>Using a combination of tools like this, and taking a look at the generated files in lib/model/om should give you a good push, and a bit of a shortcut to more complex queries than you may be used to - rather than having to trawl the Propel documentation.</p>
]]></content:encoded>
			<wfw:commentRss>http://eatmymonkeydust.com/2008/04/how-to-write-complex-queries-using-propel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Propel is complaining about a table that doesn&#8217;t exist</title>
		<link>http://eatmymonkeydust.com/2008/04/propel-is-complaining-about-a-table-that-doesnt-exist/</link>
		<comments>http://eatmymonkeydust.com/2008/04/propel-is-complaining-about-a-table-that-doesnt-exist/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 08:39:39 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Symfony]]></category>

		<category><![CDATA[propel]]></category>

		<category><![CDATA[clean up]]></category>

		<category><![CDATA[dump]]></category>

		<category><![CDATA[error]]></category>

		<category><![CDATA[lib]]></category>

		<category><![CDATA[propel-dump-data]]></category>

		<category><![CDATA[schema]]></category>

		<guid isPermaLink="false">http://eatmymonkeydust.com/?p=12</guid>
		<description><![CDATA[When you change your mind about your schema, and rename or remove any of your tables from your schema.yml or xml files, you must manually remove all the related classes in the lib/ folder.
Symfony does not delete these unused files when you run a build, so they will stack up and cause Propel errors, for [...]]]></description>
			<content:encoded><![CDATA[<p>When you change your mind about your schema, and rename or remove any of your tables from your schema.yml or xml files, you must manually remove all the related classes in the lib/ folder.</p>
<p>Symfony does not delete these unused files when you run a build, so they will stack up and cause Propel errors, for example when calling propel-dump-data.</p>
<p>Of course you can safely delete the lib/om and lib/map folders and run the build again, but you should manually delete the relevant files in /lib as there could be some user generated content in there also. These files are unlikely to cause any errors but might as well be deleted as part of your clean up since they are effectively useless if you have removed their referenced tables from the schema.</p>
]]></content:encoded>
			<wfw:commentRss>http://eatmymonkeydust.com/2008/04/propel-is-complaining-about-a-table-that-doesnt-exist/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Help! Symfony is ignoring my settings in app.yml</title>
		<link>http://eatmymonkeydust.com/2008/04/help-symfony-is-ignoring-my-settings-in-appyml/</link>
		<comments>http://eatmymonkeydust.com/2008/04/help-symfony-is-ignoring-my-settings-in-appyml/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 08:47:35 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Symfony]]></category>

		<category><![CDATA[configuration]]></category>

		<category><![CDATA[app.yml]]></category>

		<category><![CDATA[config]]></category>

		<category><![CDATA[error]]></category>

		<category><![CDATA[ignore]]></category>

		<category><![CDATA[settings]]></category>

		<guid isPermaLink="false">http://eatmymonkeydust.com/?p=11</guid>
		<description><![CDATA[Something that just cropped up today&#8230;
As your site grows, and you add more and more config to the app.yml file, be very careful not to re-declare the same named element. Symfony will not warn you, and there will be no errors - but the second (lower) instance will simple overwrite the first!
For example, if you [...]]]></description>
			<content:encoded><![CDATA[<h3>Something that just cropped up today&#8230;</h3>
<p>As your site grows, and you add more and more config to the app.yml file, be very careful not to re-declare the same named element. Symfony will not warn you, and there will be no errors - but the second (lower) instance will simple overwrite the first!</p>
<p>For example, if you have forgotten that you already have an element called profile hiding near the top of the file, and you add another one called profile at the bottom, with all your profile page settings - the lower one will destroy the one higher in the file.</p>
<p>This can be hard to spot if you have been meticulously coding and added a default value to all your sfConfig::get() calls because chances are when you are developing the site, all your defaults will be the same as the ones you have specified in app.yml.</p>
<p>The problem will become apparent when an end user tries to change the configuration and the change is ignored, because Symfony is simply using the default value rather than the one the user thinks they are setting.</p>
<p>Careful out there kids!</p>
]]></content:encoded>
			<wfw:commentRss>http://eatmymonkeydust.com/2008/04/help-symfony-is-ignoring-my-settings-in-appyml/feed/</wfw:commentRss>
		</item>
		<item>
		<title>UTF-8 and strlen()</title>
		<link>http://eatmymonkeydust.com/2008/04/utf-8-and-strlen/</link>
		<comments>http://eatmymonkeydust.com/2008/04/utf-8-and-strlen/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 10:14:27 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Symfony]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Encoding]]></category>

		<category><![CDATA[multibyte]]></category>

		<category><![CDATA[strlen]]></category>

		<category><![CDATA[UTF-8]]></category>

		<guid isPermaLink="false">http://eatmymonkeydust.com/?p=9</guid>
		<description><![CDATA[Trying to find out the length of a string and wondering why the values are often wrong?
UTF-8 characters can be multi-byte, and strlen() returns the length of the string in bytes, which means the string ååå would actually have a &#8220;length&#8221; of 6.
One solution is to use the multibyte function &#8220;mb_strlen&#8221; instead, you will need [...]]]></description>
			<content:encoded><![CDATA[<p>Trying to find out the length of a string and wondering why the values are often wrong?</p>
<p>UTF-8 characters can be multi-byte, and strlen() returns the length of the string in bytes, which means the string ååå would actually have a &#8220;length&#8221; of 6.</p>
<p>One solution is to use the multibyte function &#8220;mb_strlen&#8221; instead, you will need to have PHP compiled with this - but it seems to be a default in later versions.</p>
<p>E.g.</p>

<div class="wp_syntax"><div class="code"><pre class="php"><span style="color: #ff0000">$value</span> <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">&quot;ÅØÆbob&quot;</span><span style="color: #66cc66;">;</span>
<span style="color: #000066;">echo</span> <span style="color: #000066;">strlen</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000">$value</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">;</span>
<span style="color: #808080; font-style: italic;">// 9</span>
&nbsp;
<span style="color: #000066;">echo</span> <span style="color: #000066;">mb_strlen</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000">$value</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'UTF-8'</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">;</span>
<span style="color: #808080; font-style: italic;">// 6</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://eatmymonkeydust.com/2008/04/utf-8-and-strlen/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I18n is for life (actions), not just for Christmas (templates)</title>
		<link>http://eatmymonkeydust.com/2008/04/i18n-is-for-life-actions-not-just-for-christmas-templates/</link>
		<comments>http://eatmymonkeydust.com/2008/04/i18n-is-for-life-actions-not-just-for-christmas-templates/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 16:38:46 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
		
		<category><![CDATA[Symfony]]></category>

		<category><![CDATA[i18n]]></category>

		<category><![CDATA[action]]></category>

		<category><![CDATA[internationalisation]]></category>

		<category><![CDATA[internationalization]]></category>

		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://eatmymonkeydust.com/?p=8</guid>
		<description><![CDATA[Well, the point is make sure you Internationalise everything, not just the text you have in the templates.
For example, when using ajax calls you may be rendering text directly from actions, or you may be throwing exceptions which have meaningful error messages which are displayed by the template. You need to remember to &#8220;i18nalise&#8221; this [...]]]></description>
			<content:encoded><![CDATA[<p>Well, the point is make sure you Internationalise everything, not just the text you have in the templates.</p>
<p>For example, when using ajax calls you may be rendering text directly from actions, or you may be throwing exceptions which have meaningful error messages which are displayed by the template. You need to remember to &#8220;i18nalise&#8221; this text too&#8230;</p>
<p>From an action, you can access the i18n function via the context singleton, as documented by the Symfony docs (http://www.symfony-project.org/book/1_0/13-I18n-and-L10n)</p>

<div class="wp_syntax"><div class="code"><pre class="php"><span style="color: #ff0000">$this</span><span style="color: #66cc66;">-&gt;</span><span style="color: #006600;">getContext</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">-&gt;</span><span style="color: #006600;">getI18n</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">-&gt;</span>__<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;yourtexthere&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">;</span></pre></div></div>

<p>Remember to do it now, and you won&#8217;t kick yourself later!</p>
]]></content:encoded>
			<wfw:commentRss>http://eatmymonkeydust.com/2008/04/i18n-is-for-life-actions-not-just-for-christmas-templates/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to click an image in sfBrowser (symfony lime testing)</title>
		<link>http://eatmymonkeydust.com/2008/04/how-to-click-an-image-in-sfbrowser-symfony-lime-testing/</link>
		<comments>http://eatmymonkeydust.com/2008/04/how-to-click-an-image-in-sfbrowser-symfony-lime-testing/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 11:56:39 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
		
		<category><![CDATA[Functional Testing]]></category>

		<category><![CDATA[Symfony]]></category>

		<category><![CDATA[lime]]></category>

		<category><![CDATA[sfbrowser]]></category>

		<category><![CDATA[test. functional]]></category>

		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://eatmymonkeydust.com/?p=7</guid>
		<description><![CDATA[This is probably a really simple point, but it actually took me a few searches and tries to find the answer - but it&#8217;s quite simple really, just use the image&#8217;s alt tag attribute.
If you are using the symfony image_tag helper and not specifying your own alt attribute, then it will be the image name [...]]]></description>
			<content:encoded><![CDATA[<p>This is probably a really simple point, but it actually took me a few searches and tries to find the answer - but it&#8217;s quite simple really, just use the image&#8217;s alt tag attribute.</p>
<p>If you are using the symfony image_tag helper and not specifying your own alt attribute, then it will be the image name minus the extension, for example - if your template contains this link:</p>

<div class="wp_syntax"><div class="code"><pre class="php"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000066;">echo</span> link_to<span style="color: #66cc66;">&#40;</span>image_tag<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;fred.jpg&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">&quot;@somewhere&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>then in your Functional test, use:</p>

<div class="wp_syntax"><div class="code"><pre class="php"><span style="color: #ff0000">$b</span><span style="color: #66cc66;">-&gt;</span><span style="color: #006600;">click</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;fred&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://eatmymonkeydust.com/2008/04/how-to-click-an-image-in-sfbrowser-symfony-lime-testing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>When the pager_navigation function does not create the correct link&#8230;</title>
		<link>http://eatmymonkeydust.com/2008/04/when-the-pager_navigation-function-does-not-create-the-correct-link/</link>
		<comments>http://eatmymonkeydust.com/2008/04/when-the-pager_navigation-function-does-not-create-the-correct-link/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 16:39:23 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
		
		<category><![CDATA[Symfony]]></category>

		<category><![CDATA[broken]]></category>

		<category><![CDATA[error]]></category>

		<category><![CDATA[pager]]></category>

		<category><![CDATA[propel]]></category>

		<category><![CDATA[routing]]></category>

		<category><![CDATA[sfpropel]]></category>

		<guid isPermaLink="false">http://eatmymonkeydust.com/?p=6</guid>
		<description><![CDATA[If you have used a route name in the call to this function, it will be parsed based on your routing.yml file, this means that if you don&#8217;t have a :page variable listed (and you probably don&#8217;t) the route will ignore the page argument that the pager function tries to add.
The easy solution is to [...]]]></description>
			<content:encoded><![CDATA[<p>If you have used a route name in the call to this function, it will be parsed based on your routing.yml file, this means that if you don&#8217;t have a :page variable listed (and you probably don&#8217;t) the route will ignore the page argument that the pager function tries to add.</p>
<p>The easy solution is to add /* to the end of your routing rule, so that any other parameters are allowed.</p>
<p>E.g.</p>

<div class="wp_syntax"><div class="code"><pre class="text">myroute:
  url:   /somewhere/:userid/*
  param: { module: myModule, action: myAction }
&nbsp;
mynextroute:
  url: etc</pre></div></div>

<p>Now your routing functions will add any extra parameters as necessary.</p>
]]></content:encoded>
			<wfw:commentRss>http://eatmymonkeydust.com/2008/04/when-the-pager_navigation-function-does-not-create-the-correct-link/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Email validator bug</title>
		<link>http://eatmymonkeydust.com/2008/04/email-validator-bug/</link>
		<comments>http://eatmymonkeydust.com/2008/04/email-validator-bug/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 13:27:12 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Symfony]]></category>

		<category><![CDATA[bug]]></category>

		<category><![CDATA[error]]></category>

		<category><![CDATA[june]]></category>

		<category><![CDATA[validator]]></category>

		<guid isPermaLink="false">http://eatmymonkeydust.com/?p=4</guid>
		<description><![CDATA[The problem
There is a bug in Symfony&#8217;s email validator which means that unless you use both modes (strict and non-strict) invalid email addresses are possible.
Time of writing we are at version 1.0.13 - this could well be (and probably will be) fixed in 1.1 but please let me know if you spot that this has [...]]]></description>
			<content:encoded><![CDATA[<h3>The problem</h3>
<p>There is a bug in Symfony&#8217;s email validator which means that unless you use both modes (strict and non-strict) invalid email addresses are possible.</p>
<p>Time of writing we are at version 1.0.13 - this could well be (and probably will be) fixed in 1.1 but please let me know if you spot that this has been fixed beforehand.</p>
<h3>Strict mode validation</h3>
<p>This mode is intended to catch email addresses such as root@localhost, but unfortunately it does not check for valid email strings, so %,%@hotmail.com would be accepted, as well as many other illegal character combinations.</p>
<h3>Non-strict mode</h3>
<p>This mode checks that the email address contains legal characters, but does not check for internal addresses. This is fine for most cases, but it is worth restricting users from using your site to spam your local mail server.</p>
<h3>Solution 1</h3>
<p><a href="http://www.wwwp.de/blog/archives/26-Bug-in-Symfonys-email-validator.html" target="_blank">Sapheriel</a> suggests on his blog that one solution is to override the functionality of the class, and then restore it once an update has been released.</p>
<p>&#8220;The best way to achieve this with the least amount of intrusion is to copy sfEmailValidator.class.php into your project&#8217;s library folder, modify it, and delete it once a fix has been published&#8221;</p>
<p>This may suit many users</p>
<h3>Solution 2</h3>
<p>If you do not want to worry about something you may have to do in the future, you can also run the validator twice, for example in your validator.yml file:</p>

<div class="wp_syntax"><div class="code"><pre class="text">DoubleCheckEmailValidator:
  class: sfEmailValidator
  param:
    class: sfGuardUser
    column: email
    strict: true
    email_error: This email address is invalid
&nbsp;
fields:
  email:
    required:
      msg: Please enter an email address
    sfEmailValidator:
      email_error: This email address is invalid
      strict: false
    sfPropelUniqueValidator:
      class: sfGuardUser
      column: email
      unique_error: This email is already in use
    doubleCheckEmailValidator:</pre></div></div>

<p>You could also write a custom validator which calls the email validator twice, however we have opted for this solution for now.</p>
<h5>Thanks to June for the content.</h5>
]]></content:encoded>
			<wfw:commentRss>http://eatmymonkeydust.com/2008/04/email-validator-bug/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Symfony and I - an introduction</title>
		<link>http://eatmymonkeydust.com/2008/04/welcome/</link>
		<comments>http://eatmymonkeydust.com/2008/04/welcome/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 10:47:37 +0000</pubDate>
		<dc:creator>Russ</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Symfony]]></category>

		<category><![CDATA[askeet]]></category>

		<category><![CDATA[hello]]></category>

		<category><![CDATA[object]]></category>

		<category><![CDATA[object oriented]]></category>

		<category><![CDATA[oriented]]></category>

		<category><![CDATA[welcome]]></category>

		<guid isPermaLink="false">http://eatmymonkeydust.com/?p=3</guid>
		<description><![CDATA[I&#8217;ve been working with PHP for several years, and in November of 2007 I became part of a team tasked with researching Symfony for a new web project, with the goal of creating a plugin oriented media portal for Norway.
Other than some Java training at university, and the odd borrowed third-party classes (notably phpclasses.org) my [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="float: left;" src="http://www.symfony-project.org/images/homepage/books.jpg" alt="Symfony book" />I&#8217;ve been working with PHP for several years, and in November of 2007 I became part of a team tasked with researching Symfony for a new web project, with the goal of creating a plugin oriented media portal for Norway.</p>
<p>Other than some Java training at university, and the odd borrowed third-party classes (notably <a title="PHP Classes" href="http://www.phpclasses.org" target="_blank">phpclasses.org</a>) my PHP background up to this point was purely based on procedural style programming. I&#8217;d worked on some big projects, some I&#8217;m proud of and some I really want to go back to and rewrite from scratch, a sentence I&#8217;m sure you will hear from many &#8220;code monkeys&#8221;.</p>
<p>Symfony for me, was my first breach into the much hyped object oriented style PHP5 - and a whole new way of thinking. In the following articles, I hope to share with you the experiences I have had, with PHP5, Symfony and any other related technologies that I stumble across.</p>
<p>One of the things I have realised in the last few weeks, is that when searching for answers to problems that are not well documented, the most common results are in the form of developer blogs. Some of these have been invaluable to me and I&#8217;d like to credit them here, I&#8217;d also like this to become one of those blogs - since some of the answers I have sought have not been so easily forthcoming.</p>
]]></content:encoded>
			<wfw:commentRss>http://eatmymonkeydust.com/2008/04/welcome/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
