PHP Optimization Tips - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T14:37:24Zhttp://stackoverflow.com/feeds/question/127765http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/127765/php-optimization-tips10PHP Optimization TipsJrgns2008-09-24T15:12:44Z2009-07-17T15:19:27Z
<p>I'm looking for PHP Optimization tips. Coding practices and other methodologies which will make my PHP execute faster. One tip per answer, please, and include why it makes the code faster!</p>
<p>This is not about HTML or Javascript execution, but purely server side PHP execution.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127781#1277812Answer by Jrgns for PHP Optimization TipsJrgns2008-09-24T15:15:04Z2008-09-24T15:15:04Z<p>I enclose strings that doesn't contain variables with single quotes. This tells the compiler that it doesn't need to search for variables to replace.</p>
<pre><code>echo 'This string is faster';
echo "This string is slower";
</code></pre>
http://stackoverflow.com/questions/127765/php-optimization-tips/127796#1277960Answer by Marc Gear for PHP Optimization TipsMarc Gear2008-09-24T15:16:17Z2008-09-24T15:35:50Z<p>prefer require and include over thier _once counterparts</p>
<p>EDIT: added at request of commenter: because require_once requires checks to see if the file has been included before. Benchmark it yourself and you'll see its noticeably slower.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127804#1278044Answer by D4V360 for PHP Optimization TipsD4V3602008-09-24T15:17:10Z2008-09-24T15:17:10Z<p>There are dozens of small preformance tweaks;
For example:</p>
<p>$text = 'test'; is faster as $text = "test"; (because the double quote's parse variables)
BUT: $text = "testing: $text"; is faster as $text = 'testing: ' . $text;</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127806#127806-1Answer by Marc Gear for PHP Optimization TipsMarc Gear2008-09-24T15:17:16Z2008-09-24T15:17:16Z<p>use array_key_exists() to find values in arrays rather than in_array()</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127811#1278111Answer by Marc Gear for PHP Optimization TipsMarc Gear2008-09-24T15:18:09Z2008-09-24T15:27:51Z<p>the mysql extension is faster than the mysqli extention, which is (sometimes) faster than PDO.</p>
<p>If you use mysqli in conjunction with <a href="http://dev.mysql.com/downloads/connector/php-mysqlnd/" rel="nofollow">mysqlnd</a> thats faster still</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127815#1278150Answer by gizmo for PHP Optimization Tipsgizmo2008-09-24T15:18:44Z2008-09-24T15:18:44Z<p>Focus on optimising your database querying rather than your php, really.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127822#12782213Answer by scunliffe for PHP Optimization Tipsscunliffe2008-09-24T15:19:15Z2008-09-24T15:32:00Z<p>40 Tips for optimizing your PHP code:</p>
<p><a href="http://reinholdweber.com/?p=3" rel="nofollow">http://reinholdweber.com/?p=3</a></p>
<p>Here's a few from the list:</p>
<ol>
<li>If a method can be static, declare it static. Speed improvement is by a factor of 4.</li>
<li><strong>echo</strong> is faster than <strong>print</strong>.</li>
<li>Use echo's multiple parameters instead of string concatenation.</li>
<li>Set the maxvalue for your for-loops before and not in the loop.</li>
<li><strong>Unset your variables to free memory</strong>, especially large arrays.</li>
<li>Avoid magic like __get, __set, __autoload</li>
<li><strong>require_once() is expensive</strong></li>
<li><strong>Use full paths</strong> in includes and requires, less time spent on resolving the OS paths.</li>
<li>If you need to find out the time when the script started executing, $_SERVER[’REQUEST_TIME’] is preferred to time()</li>
<li><p>See if you can use strncasecmp, strpbrk and stripos instead of regex</p>
<p>...[snip]...</p></li>
</ol>
http://stackoverflow.com/questions/127765/php-optimization-tips/127830#1278301Answer by Mr. Matt for PHP Optimization TipsMr. Matt2008-09-24T15:19:56Z2008-09-24T15:19:56Z<p>Use a cached length value when iterating over arrays - this works across other languages too, and can give you significant speed gains if the set of elements you are iterating over is large or if the size calculation is complex.</p>
<pre><code>$length = count($some_array)
for ($count = 0; $count < $length; $count++) {
...
}
</code></pre>
http://stackoverflow.com/questions/127765/php-optimization-tips/127837#1278370Answer by Marc Gear for PHP Optimization TipsMarc Gear2008-09-24T15:20:38Z2008-09-24T15:20:38Z<p>foreach is faster than while(list()=each()) when you're not modifying values, if you're modifying the hash, while(list()=each()) is faster</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127847#1278470Answer by DreamWerx for PHP Optimization TipsDreamWerx2008-09-24T15:22:58Z2008-09-24T15:22:58Z<p>Use late-binding, that is only including specific files/classes when they are needed. Less code to parse.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127849#1278496Answer by Marc Gear for PHP Optimization TipsMarc Gear2008-09-24T15:23:21Z2008-09-24T15:23:21Z<p>I realise this doesn't answer the question - but I happen to think its worth saying.</p>
<p>Nearly all of these 'optimizations' are premature, and should probably not be implemented at the expense of making code easy to understand and maintain. There are likley to me much larger bottlenecks than these optimizations.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127855#1278556Answer by R. Bemrose for PHP Optimization TipsR. Bemrose2008-09-24T15:24:43Z2008-09-24T15:24:43Z<p>If this is for a static environment, such as a web server module or using FastCGI, use an opcode cache. That way, each file is only compiled once (or whenever it is updated on disk). <a href="http://pecl.php.net/package/APC" rel="nofollow">APC</a> is a popular open source opcode cache and is scheduled to be included in PHP6.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127866#1278664Answer by David McLaughlin for PHP Optimization TipsDavid McLaughlin2008-09-24T15:26:18Z2008-09-24T15:26:18Z<p>If you really need to optimise "the PHP" code then using a "<a href="http://en.wikipedia.org/wiki/Alternative_PHP_Cache#Alternative_PHP_Cache" rel="nofollow">PHP accelerator</a>" is probably the best bang for your buck - it basically just caches the compiled bytecode of scripts so this operation doesn't have to be done repeatedly. Useful for OOP with lots of different files, etc.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127900#1279001Answer by Peter Bailey for PHP Optimization TipsPeter Bailey2008-09-24T15:31:44Z2008-09-24T15:31:44Z<p>Reduce the number of operations within loops whenever possible.</p>
<p>Here's a pointless-but-illustrative example.</p>
<pre><code><?php
$data = array(
'Santa Claus'
, 'Clark Kent'
, 'Barack Obama'
);
$displayAsUpperCase = true;
foreach ( $data as $datum )
{
if ( $displayAsUpperCase )
{
echo strtoupper( $datum ), "\n";
} else {
echo $datum, "\n";
}
}
</code></pre>
<p>See how the condition is executed every iteration? This is unnecessary, since the $displayAsUpperCase flag never changes during the lifetime of the loop. The solution is to use the value of the flag to define a callback</p>
<pre><code><?php
$data = array(
'Santa Claus'
, 'Clark Kent'
, 'Barack Obama'
);
$displayAsUpperCase = true;
$displayCallback = ( $displayAsUpperCase ) ? 'strtoupper' : create_function( '$data', 'return $data;' );
foreach ( $data as $datum )
{
echo call_user_func( $displayCallback, $datum ), "\n";
}
</code></pre>
<p>For those of you taking notes, this is a similar strategical process to polymorphism.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127907#1279070Answer by Marc Gear for PHP Optimization TipsMarc Gear2008-09-24T15:33:24Z2008-09-24T15:33:24Z<p>use the <a href="http://www.php.net/manual/en/ref.strings.php" rel="nofollow">string handling functions</a> instead of preg_ and ereg_ functions if you can.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127919#12791917Answer by Michał Słaby for PHP Optimization TipsMichał Słaby2008-09-24T15:35:26Z2008-09-24T15:35:26Z<p><strong>Performance is sooooo overrated.</strong> Lots of programmers tend to overoptimise their code for speed forgetting that in most cases they:</p>
<ol>
<li>Make the program more obscure</li>
<li>Introduce potential flaws</li>
<li>Increase codebase that needs to be maintained</li>
</ol>
<p>All these factors significantly raise the overall development cost. Why not focus on lowering cost instead of chasing another 10µs optimisation? What is the single biggest share in software development cost? Is it server? Network throughput? CPU cycles? RAM or disk space? Nope. It's the programmer. <strong>You cost big bucks!</strong></p>
<p>Write your programs so they are optimised for humans, not computers. It is much faster for you to create a Decorator and waste some CPU power than trying to inject <code>if</code>-conditions to whole inheritance tree and then wasting another hour scratching your head what the hell went wrong.</p>
<p>Computers should work hard. For you it is better to work smart.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127992#1279923Answer by Johnny for PHP Optimization TipsJohnny2008-09-24T15:49:52Z2008-09-24T15:49:52Z<p>There are several ways to improve performance including:</p>
<ul>
<li>Use a php accelerator.</li>
<li>Make use of Caching.</li>
<li>Best of all, use a profiler to actually pin-point your performance issues. Nothing is worse then to solve problems that aren't there. </li>
</ul>
<p>I would advice reading <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">http://developer.yahoo.com/performance/rules.html</a> not php specific but very usefull.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/128193#1281932Answer by Armin Ronacher for PHP Optimization TipsArmin Ronacher2008-09-24T16:23:24Z2008-09-24T16:23:24Z<p>Use an opcode cache: <a href="http://php.net/apc" rel="nofollow">http://php.net/apc</a></p>
http://stackoverflow.com/questions/127765/php-optimization-tips/129124#1291240Answer by Adam Gibbins for PHP Optimization TipsAdam Gibbins2008-09-24T18:58:01Z2008-09-24T18:58:01Z<p>Opcode cache's such as eAccelerator I've always found have made a significant improvement to the performance of many applications.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/129254#1292542Answer by David for PHP Optimization TipsDavid2008-09-24T19:17:32Z2008-09-24T19:22:37Z<p>To sum things up...</p>
<ol>
<li>Don't worry about optimization until you actually run into a bottleneck. Premature optimization will just introduce bugs and make the code harder to maintain.</li>
<li>Use a PHP Opcache such as <a href="http://www.php.net/apc" rel="nofollow">APC</a>, <a href="http://xcache.lighttpd.net/" rel="nofollow">xCache</a> or <a href="http://turck-mmcache.sourceforge.net/" rel="nofollow">Turck MMCache</a>, or a memory caching system such as <a href="http://www.danga.com/memcached/" rel="nofollow">memcached</a>.</li>
</ol>
<p>The following is a list of "optimizations" you can use in your code, but the differences are so minuscule, you shouldn't use these at the expense of unreadable, unmanageable code.</p>
<ol>
<li>Use require and include instead of require_once and include_once, which are slower.</li>
<li>echo is faster than print</li>
<li>$_SERVER['REQUEST_TIME'] is faster than time(), which invokes a system call (php5)</li>
<li>Calculate the limit for a for loop before the loop, not in the loop condition.</li>
<li>Only inlcuded code/files/classes that are actually needed.</li>
<li>Enclose literal strings in single quotes unless they actually contain variables you want to evaluate and insert into the string.</li>
<li>Type-specific comparison operators are faster then non-type specific ones, when you know the types of the variables you are comparing. $x === 5 is faster than $x == 5, but will evaluate to false if $x is the string '5' for example.</li>
<li>Use string functions instead of regular expressions where appropriate. To find if a string is contained in another string use strpos or stripos. To replace values in a string when you don't need regular expressions, use str_replace.</li>
<li>preg_* functions are faster than ereg_* regular expression functions.</li>
<li>Do as little as possible inside loops, especially avoid many if constructs when possible.</li>
<li>Free memory with unset, when a variable is no longer needed.</li>
<li>Using full paths for includes and requires is faster than relative paths.</li>
<li>Avoid "magic" functions when possible. __autoload, __call etc.</li>
<li>Sending multiple parameters to echo (separated by a comma) is faster than string concatenation.</li>
</ol>
<p>You also have to correctly optimize your database schema and queries.</p>
<ol>
<li>Make sure you denormalize your database in key areas where appropriate.</li>
<li>Make sure you have indices where needed.</li>
<li>Make sure you don't have unneeded indices.</li>
<li>Optimize your queries. For example an IN() sub-query is many,many times slower than an INNER JOIN sub-query.</li>
</ol>
http://stackoverflow.com/questions/127765/php-optimization-tips/129311#1293110Answer by NebyGemini for PHP Optimization TipsNebyGemini2008-09-24T19:26:49Z2008-09-24T19:26:49Z<p>Basic optimalisation philosophy is:
Having to do less, but with the same end result.</p>
<p>Havin said that, performance issues are almost always I/O bound (SQL, etc), So focus on that, instead of optimizing for CPU and memory.</p>
<p>If speed is important you should consider building a profiler in your scripts
This profiler can be used to see which pages / queries are slow.
Basic example of a profiler:</p>
<pre><code>... in query function ....
global $query_log;
$start = microtime(true);
mysql_query($sql);
$query_execution_time = microtime(true) - $start;
$query_log[$sql] = query_execution_time;
... end of script ....
var_dump($query_log);
</code></pre>
<p>If your php system is using classes I can recommend looking into the "__autoload" / "spl_autoload_register" function. This mechanism can reduce your code. (less include/require lines) and speed up your code because class files will only be loaded when they are used.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/129321#1293210Answer by VirtuosiMedia for PHP Optimization TipsVirtuosiMedia2008-09-24T19:28:20Z2008-09-24T19:28:20Z<p>If you want a side-by-side comparison of different PHP language features, check out <a href="http://www.phpbench.com/" rel="nofollow">PHP Benchmark</a>. It actually runs comparison tests each time the page is loaded. If you search, there are other sites like it as well.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/1130566#11305662Answer by YiSh for PHP Optimization TipsYiSh2009-07-15T10:20:29Z2009-07-15T10:20:29Z<p>Some of the above tips look very similar to what Google has published some time ago:</p>
<p><a href="http://code.google.com/speed/articles/" rel="nofollow">Google Optimization Tips</a></p>
<p>A lot of the advice (like echo vs print, single vs double quotes, etc.) have been actually contradicted by the PHP team themselves:</p>
<p><a href="http://groups.google.com/group/make-the-web-faster/browse%5Fthread/thread/ddfbe82dd80408cc?pli=1" rel="nofollow">PHP optimization advice clarified</a> </p>
<p>and here is another article with some numbers:</p>
<p><a href="http://www.codexon.com/posts/debunking-googles-internet-optimization-tips" rel="nofollow">Debunking Google’s Internet Optimization Tips</a></p>
http://stackoverflow.com/questions/127765/php-optimization-tips/1143945#11439452Answer by Jonathan for PHP Optimization TipsJonathan2009-07-17T15:19:27Z2009-07-17T15:19:27Z<p>You really need to check this site out : <a href="http://www.phpbench.com/" rel="nofollow">The PHP Benchmark</a>.</p>
<p>The code examples on the site are automatically generated and run when you enter the site and the benchmark is added to the global statistics.</p>
<p>Really cool.</p>