<?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>they.misled.us &#187; php</title>
	<atom:link href="http://they.misled.us/archives/tag/php/feed" rel="self" type="application/rss+xml" />
	<link>http://they.misled.us</link>
	<description>Featuring rants unworthy of due consideration. Spell checked, but not proofread</description>
	<lastBuildDate>Mon, 09 Jan 2012 00:50:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Custom Scaffolding Theme (Symfony)</title>
		<link>http://they.misled.us/archives/1192</link>
		<comments>http://they.misled.us/archives/1192#comments</comments>
		<pubDate>Mon, 31 Aug 2009 06:15:20 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://they.misled.us/?p=1192</guid>
		<description><![CDATA[Copy the default theme from [sfPropelPlugin]data/generator/sfPropelCrud/default/theme to data/generator/sfPropelCrud/default/theme Edit the files in data/generator/sfPropelCrud/default/theme/templates as you would with an admin template. Generate like usual: ./symfony propel:generate-crud [app] [module] [base] Derived from: ...]]></description>
			<content:encoded><![CDATA[<p>Copy the default theme from</p>
<p><code>[sfPropelPlugin]data/generator/sfPropelCrud/default/theme</code></p>
<p>to</p>
<p><code>data/generator/sfPropelCrud/default/theme</code></p>
<p>Edit the files in data/generator/sfPropelCrud/default/theme/templates as you would with an admin template.</p>
<p>Generate like usual: <code>./symfony propel:generate-crud [app] [module] [base]</code></p>
<p>Derived from: <a href="http://www.playingwithwire.com/2007/02/review-of-the-definitive-guide-to-symfony/">http://www.playingwithwire.com/2007/02/review-of-the-definitive-guide-to-symfony/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://they.misled.us/archives/1192/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP UUID generator function</title>
		<link>http://they.misled.us/archives/1190</link>
		<comments>http://they.misled.us/archives/1190#comments</comments>
		<pubDate>Mon, 31 Aug 2009 06:12:49 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://they.misled.us/?p=1190</guid>
		<description><![CDATA[Via: http://www.ajaxray.com/blog/2008/02/06/php-uuid-generator-function/ /** * Generates an UUID * * @author Anis uddin Ahmad * @param string an optional prefix * @return string the formatted uuid */ function uuid($prefix = ”) ...]]></description>
			<content:encoded><![CDATA[<p>Via: <a href="http://www.ajaxray.com/blog/2008/02/06/php-uuid-generator-function/">http://www.ajaxray.com/blog/2008/02/06/php-uuid-generator-function/</a></p>
<pre>/**
  * Generates an UUID
  *
  * @author     Anis uddin Ahmad
  * @param      string  an optional prefix
  * @return     string  the formatted uuid
  */
  function uuid($prefix = ”)
  {
    $chars = md5(uniqid(rand()));
    $uuid  = substr($chars,0,8) . '-';
    $uuid .= substr($chars,8,4) . '-';
    $uuid .= substr($chars,12,4) . '-';
    $uuid .= substr($chars,16,4) . '-';
    $uuid .= substr($chars,20,12);

    return $prefix . $uuid;
  }</pre>
]]></content:encoded>
			<wfw:commentRss>http://they.misled.us/archives/1190/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
