<?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>PHP Trivandrum &#187; fast code</title>
	<atom:link href="http://www.php-trivandrum.org/tag/fast-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.php-trivandrum.org</link>
	<description>Get addicted to PHP</description>
	<lastBuildDate>Fri, 27 Jan 2012 03:19:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>12 PHP optimization tips</title>
		<link>http://www.php-trivandrum.org/uncategorized/12-php-optimization-tips/</link>
		<comments>http://www.php-trivandrum.org/uncategorized/12-php-optimization-tips/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 17:47:24 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fast code]]></category>
		<category><![CDATA[speedup php pages]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/2007/01/24/12-php-optimization-tips/</guid>
		<description><![CDATA[
If a method can be static, declare it static. Speed improvement is by a factor of 4.
Avoid magic like __get, __set, __autoload
require_once() is expensive
Use full paths in includes and requires, less time spent on resolving the OS paths.
If you need to find out the time when the script started executing, $_SERVER[â€™REQUEST_TIMEâ€™] is preferred to time()
See [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/uncategorized/12-php-optimization-tips/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>error_reporting(E_ALL); make code faster</title>
		<link>http://www.php-trivandrum.org/tips/error_reportinge_all-make-code-faster/</link>
		<comments>http://www.php-trivandrum.org/tips/error_reportinge_all-make-code-faster/#comments</comments>
		<pubDate>Thu, 14 Sep 2006 18:17:11 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[error reporting]]></category>
		<category><![CDATA[fast code]]></category>
		<category><![CDATA[php tips]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/2006/09/14/error_reportinge_all-make-code-faster/</guid>
		<description><![CDATA[The single most important thing I tell people who use PHP is to turn error reporting to its maximum level. Why would I want to do this? Generally the error reporting is set at a level that will hide many little things like:

declaring a variable ahead of time,
referencing a variable that is not available in [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/tips/error_reportinge_all-make-code-faster/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

