<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: 20 PHP optimization tips - make it faster</title>
	<link>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/</link>
	<description>DeviLib - library about web, IT, programming and web design</description>
	<pubDate>Wed, 20 Aug 2008 12:59:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: marcus</title>
		<link>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-538</link>
		<dc:creator>marcus</dc:creator>
		<pubDate>Wed, 06 Aug 2008 11:35:17 +0000</pubDate>
		<guid>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-538</guid>
		<description>How many times will we see this exact same blog entry on stumble? If you want hits to your site, write something original!</description>
		<content:encoded><![CDATA[<p>How many times will we see this exact same blog entry on stumble? If you want hits to your site, write something original!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ari</title>
		<link>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-146</link>
		<dc:creator>Ari</dc:creator>
		<pubDate>Sat, 26 Apr 2008 15:33:51 +0000</pubDate>
		<guid>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-146</guid>
		<description>isset($arr['foo']) is not the same as in_array('foo', $arr)

in_array — Checks if a value exists in an array
isset($arr['foo']) Checks if a key exists in an array.</description>
		<content:encoded><![CDATA[<p>isset($arr[&#8217;foo&#8217;]) is not the same as in_array(&#8217;foo&#8217;, $arr)</p>
<p>in_array — Checks if a value exists in an array<br />
isset($arr[&#8217;foo&#8217;]) Checks if a key exists in an array.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ziogas</title>
		<link>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-71</link>
		<dc:creator>ziogas</dc:creator>
		<pubDate>Fri, 08 Feb 2008 06:43:14 +0000</pubDate>
		<guid>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-71</guid>
		<description>It's a collection of tips, do you expect that here (or anywhere else) are still super unique tips that will improve code quality twice? I don't think so :D web is just too large that we can avoid partial duplication</description>
		<content:encoded><![CDATA[<p>It&#8217;s a collection of tips, do you expect that here (or anywhere else) are still super unique tips that will improve code quality twice? I don&#8217;t think so <img src='http://devilib.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> web is just too large that we can avoid partial duplication</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rudy gee</title>
		<link>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-70</link>
		<dc:creator>rudy gee</dc:creator>
		<pubDate>Thu, 07 Feb 2008 22:14:17 +0000</pubDate>
		<guid>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-70</guid>
		<description>duh. same post different site x eleventy billion.</description>
		<content:encoded><![CDATA[<p>duh. same post different site x eleventy billion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ziogas</title>
		<link>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-68</link>
		<dc:creator>ziogas</dc:creator>
		<pubDate>Thu, 07 Feb 2008 09:23:47 +0000</pubDate>
		<guid>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-68</guid>
		<description>In that point of view you are quite right, thinking about time spending in the future, you should declare a variables even if it's used only once. But it still less efficient than write directly variable value although that "efficient" is very small and in 99.99% that  difference just imperceptible</description>
		<content:encoded><![CDATA[<p>In that point of view you are quite right, thinking about time spending in the future, you should declare a variables even if it&#8217;s used only once. But it still less efficient than write directly variable value although that &#8220;efficient&#8221; is very small and in 99.99% that  difference just imperceptible</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chiron</title>
		<link>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-67</link>
		<dc:creator>Chiron</dc:creator>
		<pubDate>Thu, 07 Feb 2008 01:46:59 +0000</pubDate>
		<guid>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-67</guid>
		<description>I liked these tips, but I would disagree with one of them.  I would use a variable, even if it's only used once.  The reason is that you never know when you're going to make a change that would reuse that variable.  The insignificant saving of time you might get would be swamped by the time you'd spend rewriting your script.  Also, the presence of hard-coded values would tend to discourage you from thinking of reusing a value as a variable, since it would present a problem.

Just my take on it...</description>
		<content:encoded><![CDATA[<p>I liked these tips, but I would disagree with one of them.  I would use a variable, even if it&#8217;s only used once.  The reason is that you never know when you&#8217;re going to make a change that would reuse that variable.  The insignificant saving of time you might get would be swamped by the time you&#8217;d spend rewriting your script.  Also, the presence of hard-coded values would tend to discourage you from thinking of reusing a value as a variable, since it would present a problem.</p>
<p>Just my take on it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SylverStyle</title>
		<link>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-15</link>
		<dc:creator>SylverStyle</dc:creator>
		<pubDate>Mon, 19 Nov 2007 19:14:55 +0000</pubDate>
		<guid>http://devilib.com/solutions-frameworks/tips-tricks/programming/20-php-optimization-tips-faster/#comment-15</guid>
		<description>here are some more PHP optimization tips
http://ecastr.com/phoenix/blog/details/advanced_php_optimization_tips_chapter/
http://ecastr.com/phoenix/blog/details/advanced_php_optimization_tips_chapter_2/</description>
		<content:encoded><![CDATA[<p>here are some more PHP optimization tips<br />
<a href="http://ecastr.com/phoenix/blog/details/advanced_php_optimization_tips_chapter/" rel="nofollow">http://ecastr.com/phoenix/blog/details/advanced_php_optimization_tips_chapter/</a><br />
<a href="http://ecastr.com/phoenix/blog/details/advanced_php_optimization_tips_chapter_2/" rel="nofollow">http://ecastr.com/phoenix/blog/details/advanced_php_optimization_tips_chapter_2/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
