<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>marcus welz &#187; code</title>
	<atom:link href="http://metaversedeveloper.com/tag/code/feed/" rel="self" type="application/rss+xml" />
	<link>http://metaversedeveloper.com</link>
	<description>working hard at avoiding to write code</description>
	<lastBuildDate>Thu, 04 Mar 2010 17:22:04 +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>Zend Framework and File Locking Pitfalls</title>
		<link>http://metaversedeveloper.com/2008/08/03/zend-framework-and-file-locking-pitfalls/</link>
		<comments>http://metaversedeveloper.com/2008/08/03/zend-framework-and-file-locking-pitfalls/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 18:49:46 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[flock]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[zf]]></category>

		<guid isPermaLink="false">http://marcuswelz.com/?p=138</guid>
		<description><![CDATA[Earlier today while reading through the Zend Framework 1.6 RC1 release notes I've come across an interesting bug that has been fixed: [ZF-3382] Zend_Cache_Backend_File problems under very high load.
There are a lot of things to say about this issue. The obvious ones first:
1. Under typical operation such as opening, locking, reading/writing, and then closing a [...]]]></description>
		<wfw:commentRss>http://metaversedeveloper.com/2008/08/03/zend-framework-and-file-locking-pitfalls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handling CSV data with PHP the Smart Way</title>
		<link>http://metaversedeveloper.com/2005/06/14/handling-csv-data-with-php-the-smart-way/</link>
		<comments>http://metaversedeveloper.com/2005/06/14/handling-csv-data-with-php-the-smart-way/#comments</comments>
		<pubDate>Tue, 14 Jun 2005 20:09:28 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://metaversedeveloper.com/?p=27</guid>
		<description><![CDATA[Let's assume we have a file "users.csv", containing the following data:

"Username","Firstname","Lastname","Age"
"johndoe","John","Doe","21"
"hmiller","Hank","Miller","35"

Processing the data in PHP is rather straight forward, by simply using fgetcsv(). Let's display the user's name and age:

// open the file for reading
$f = fopen('users.csv', 'r');

// just a dummy read to get the header out of the way
fgetcsv($f);

// loop through each line
while ($data [...]]]></description>
		<wfw:commentRss>http://metaversedeveloper.com/2005/06/14/handling-csv-data-with-php-the-smart-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
