<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: 10 PHP Optimisation Techniques</title>
	<atom:link href="http://blog.quantumstate.co.uk/10-php-optimisation-techniques.html/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.quantumstate.co.uk/10-php-optimisation-techniques.html</link>
	<description></description>
	<pubDate>Sun, 05 Feb 2012 01:32:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Dmorph</title>
		<link>http://blog.quantumstate.co.uk/10-php-optimisation-techniques.html#comment-593</link>
		<dc:creator>Dmorph</dc:creator>
		<pubDate>Tue, 07 Oct 2008 14:55:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.quantumstate.co.uk/10-php-optimisation-techniques.html#comment-593</guid>
		<description>Nice article. Another useful tool is GZIP. GZIP is a very effective way of keeping your bandwidth down when having large HTML/PHP pages. 

It compresses the page thats being sent to the user viewing your site, when the user recieves this compressed version of the page it uncompresses the page saving bandwidth and speeds up the transfer from server to browser.

Paste ( php_value output_handler ob_gzhandler) into your .htaccess file and it will enable GZIP across all pages in that directory.</description>
		<content:encoded><![CDATA[<p>Nice article. Another useful tool is GZIP. GZIP is a very effective way of keeping your bandwidth down when having large HTML/PHP pages. </p>
<p>It compresses the page thats being sent to the user viewing your site, when the user recieves this compressed version of the page it uncompresses the page saving bandwidth and speeds up the transfer from server to browser.</p>
<p>Paste ( php_value output_handler ob_gzhandler) into your .htaccess file and it will enable GZIP across all pages in that directory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://blog.quantumstate.co.uk/10-php-optimisation-techniques.html#comment-200</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 20 Jun 2008 15:52:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.quantumstate.co.uk/10-php-optimisation-techniques.html#comment-200</guid>
		<description>I realise that arrays and objects are quite different things but for some purposes they could both be used.  For example I could create an object with several variables in it to allow me to conveniently group them, like what you would use a struct in C/C++ for.  In this instance it would be faster to use an array with the same functionality.

It does take longer to access an element of an array if you run a simple test script.  Like I said in the article this is only practical for very small arrays and would only be used inside a loop where the speed difference is significant.  This can easily be tested if you wish to test it.</description>
		<content:encoded><![CDATA[<p>I realise that arrays and objects are quite different things but for some purposes they could both be used.  For example I could create an object with several variables in it to allow me to conveniently group them, like what you would use a struct in C/C++ for.  In this instance it would be faster to use an array with the same functionality.</p>
<p>It does take longer to access an element of an array if you run a simple test script.  Like I said in the article this is only practical for very small arrays and would only be used inside a loop where the speed difference is significant.  This can easily be tested if you wish to test it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: InSp3KtaH</title>
		<link>http://blog.quantumstate.co.uk/10-php-optimisation-techniques.html#comment-198</link>
		<dc:creator>InSp3KtaH</dc:creator>
		<pubDate>Wed, 18 Jun 2008 02:07:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.quantumstate.co.uk/10-php-optimisation-techniques.html#comment-198</guid>
		<description>Dude most of your article is wrong .. you compare apples and oranges ... Arrays and Objects are 2 different things... they dont serve the same purpose... and arrays are way faster than a bunch of variables to do the same work ... you should point out that type casting is faster.. in php you cant type cast but you can code as if ... like if $var = 1 ... never change $var to a string .. this takes memory to do it...

i could go on and on about php optimization .. but this article is about 75% wrong</description>
		<content:encoded><![CDATA[<p>Dude most of your article is wrong .. you compare apples and oranges &#8230; Arrays and Objects are 2 different things&#8230; they dont serve the same purpose&#8230; and arrays are way faster than a bunch of variables to do the same work &#8230; you should point out that type casting is faster.. in php you cant type cast but you can code as if &#8230; like if $var = 1 &#8230; never change $var to a string .. this takes memory to do it&#8230;</p>
<p>i could go on and on about php optimization .. but this article is about 75% wrong</p>
]]></content:encoded>
	</item>
</channel>
</rss>

