vote up 10 vote down star
11

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!

This is not about HTML or Javascript execution, but purely server side PHP execution.

flag

69% accept rate
I guess optimiZation is better suited. We use optimiSation in South Africa ;) – Jrgns Sep 24 '08 at 15:28

24 Answers

vote up 3 vote down

You really need to check this site out : The PHP Benchmark.

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.

Really cool.

link|flag
vote up 2 vote down

Some of the above tips look very similar to what Google has published some time ago:

Google Optimization Tips

A lot of the advice (like echo vs print, single vs double quotes, etc.) have been actually contradicted by the PHP team themselves:

PHP optimization advice clarified

and here is another article with some numbers:

Debunking Google’s Internet Optimization Tips

link|flag
vote up 0 vote down

If you want a side-by-side comparison of different PHP language features, check out PHP Benchmark. It actually runs comparison tests each time the page is loaded. If you search, there are other sites like it as well.

link|flag
vote up 0 vote down

Basic optimalisation philosophy is: Having to do less, but with the same end result.

Havin said that, performance issues are almost always I/O bound (SQL, etc), So focus on that, instead of optimizing for CPU and memory.

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:

... 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);

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.

link|flag
vote up 2 vote down

To sum things up...

  1. 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.
  2. Use a PHP Opcache such as APC, xCache or Turck MMCache, or a memory caching system such as memcached.

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.

  1. Use require and include instead of require_once and include_once, which are slower.
  2. echo is faster than print
  3. $_SERVER['REQUEST_TIME'] is faster than time(), which invokes a system call (php5)
  4. Calculate the limit for a for loop before the loop, not in the loop condition.
  5. Only inlcuded code/files/classes that are actually needed.
  6. Enclose literal strings in single quotes unless they actually contain variables you want to evaluate and insert into the string.
  7. 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.
  8. 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.
  9. preg_* functions are faster than ereg_* regular expression functions.
  10. Do as little as possible inside loops, especially avoid many if constructs when possible.
  11. Free memory with unset, when a variable is no longer needed.
  12. Using full paths for includes and requires is faster than relative paths.
  13. Avoid "magic" functions when possible. __autoload, __call etc.
  14. Sending multiple parameters to echo (separated by a comma) is faster than string concatenation.

You also have to correctly optimize your database schema and queries.

  1. Make sure you denormalize your database in key areas where appropriate.
  2. Make sure you have indices where needed.
  3. Make sure you don't have unneeded indices.
  4. Optimize your queries. For example an IN() sub-query is many,many times slower than an INNER JOIN sub-query.
link|flag
vote up 0 vote down

Opcode cache's such as eAccelerator I've always found have made a significant improvement to the performance of many applications.

link|flag
vote up 2 vote down

Use an opcode cache: http://php.net/apc

link|flag
vote up 3 vote down

There are several ways to improve performance including:

  • Use a php accelerator.
  • Make use of Caching.
  • Best of all, use a profiler to actually pin-point your performance issues. Nothing is worse then to solve problems that aren't there.

I would advice reading http://developer.yahoo.com/performance/rules.html not php specific but very usefull.

link|flag
vote up 17 vote down

Performance is sooooo overrated. Lots of programmers tend to overoptimise their code for speed forgetting that in most cases they:

  1. Make the program more obscure
  2. Introduce potential flaws
  3. Increase codebase that needs to be maintained

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. You cost big bucks!

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 if-conditions to whole inheritance tree and then wasting another hour scratching your head what the hell went wrong.

Computers should work hard. For you it is better to work smart.

link|flag
Excellent point. Should be noted, though, that while the "over-rated" label applies to programmers developing initial architecture/code, what about programmers tasked with optimizing expensive components of a code base, perhaps w/ a mandate to trade off readability for performance where reasonable. – micahwittman Sep 24 '08 at 18:29
Measure, and see what's slow @micahwittman, then you optimise that. Most of the time, it will be a database access. – Alister Bulman Oct 2 '08 at 13:24
vote up 0 vote down

use the string handling functions instead of preg_ and ereg_ functions if you can.

link|flag
vote up 1 vote down

Reduce the number of operations within loops whenever possible.

Here's a pointless-but-illustrative example.

<?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";
    }
}

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

<?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";
}

For those of you taking notes, this is a similar strategical process to polymorphism.

link|flag
You are probably slowing the script by having double the function calls. Try $displayCallback($datum); – orlandu63 Oct 10 '08 at 2:38
vote up 4 vote down

If you really need to optimise "the PHP" code then using a "PHP accelerator" 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.

link|flag
vote up 7 vote down

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). APC is a popular open source opcode cache and is scheduled to be included in PHP6.

link|flag
Exactly, we saw a 30% increase in performance when using APC. – Ryan Doherty Sep 24 '08 at 15:36
vote up 6 vote down

I realise this doesn't answer the question - but I happen to think its worth saying.

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.

link|flag
Of course. I'm working on a quite mature project which needs a bit of tweaking in the speed department. – Jrgns Sep 24 '08 at 15:30
If you're working on a mature product, then this isn't the sort of otimisation you should really be making. Profile your code, and see where the biggest wins are, add a data caching strategy, and an opcode cache as well as profiling the use of your external dependancies (db etc). – Marc Gear Sep 24 '08 at 16:07
Those sorts of things will give you much better scope for improvement, as well as being easier to do than refactor all your code to do things like ommiting double quotes. – Marc Gear Sep 24 '08 at 16:08
vote up 0 vote down

Use late-binding, that is only including specific files/classes when they are needed. Less code to parse.

link|flag
vote up 0 vote down

foreach is faster than while(list()=each()) when you're not modifying values, if you're modifying the hash, while(list()=each()) is faster

link|flag
vote up 1 vote down

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.

$length = count($some_array)

for ($count = 0; $count < $length; $count++) {
  ...
}
link|flag
vote up 13 vote down

40 Tips for optimizing your PHP code:

http://reinholdweber.com/?p=3

Here's a few from the list:

  1. If a method can be static, declare it static. Speed improvement is by a factor of 4.
  2. echo is faster than print.
  3. Use echo's multiple parameters instead of string concatenation.
  4. Set the maxvalue for your for-loops before and not in the loop.
  5. Unset your variables to free memory, especially large arrays.
  6. Avoid magic like __get, __set, __autoload
  7. require_once() is expensive
  8. Use full paths in includes and requires, less time spent on resolving the OS paths.
  9. If you need to find out the time when the script started executing, $_SERVER[’REQUEST_TIME’] is preferred to time()
  10. See if you can use strncasecmp, strpbrk and stripos instead of regex

    ...[snip]...

link|flag
Aweome, thanx for adding the examples. – Jrgns Sep 24 '08 at 15:35
scunliffe, I'm sorry to say that your optimisation tips are actually increasing development effort. Static methods are declared static on purpose, and past PHP 6 calling static methods non-static way will cause errors. Unsetting variables is rarely needed in well structured program, (continued...) – Michał Słaby Sep 24 '08 at 18:29
where variables have local scope and are automatically purged. Magic methods are ok as long as you know how to use them. You can save yourself a lot of coding with implicit getters and setters. require_once is a time saver when you try to cope with circular dependencies. (continued...) – Michał Słaby Sep 24 '08 at 18:33
Autoloading is a fantastic feature that saves you from manual tracking includes and fixing your code after your co-programmer changed or added something. Full paths are nightmare if you deploy on serveral servers. Also, it's best option if you want the code developed in Windows to fail on UNIX. – Michał Słaby Sep 24 '08 at 18:35
@Michal no problem, I was just reporting the last source I'd read that sounded legit. Not all of them are correct, but most appear to be. – scunliffe Sep 24 '08 at 19:38
vote up 0 vote down

Focus on optimising your database querying rather than your php, really.

link|flag
That doesn't realy answer the question, does it? – Jrgns Sep 24 '08 at 15:19
Yes it does. If you start wasting your time focusing on "optimizing tips" that may change from a revision of PHP to another, it's really useless comparing to CPU, memory and time you can gain on optimizing your database structure and querying. – gizmo Sep 24 '08 at 15:21
I've got an app which executes a LOT of PHP with minimal MySQL calls. I'm sure there's some apps that run without doing MySQL calls. Every little bit helps. – Jrgns Sep 24 '08 at 15:26
DB optimization is part of overall application optimization. Similarly, PHP (or insert-language-here) optimization is ALSO part of overall application optimization. So, when someone asks for "PHP optimization" tips, answers about DB optimization don't really answer the question. My two cents. – Peter Bailey Sep 24 '08 at 16:06
vote up 1 vote down

the mysql extension is faster than the mysqli extention, which is (sometimes) faster than PDO.

If you use mysqli in conjunction with mysqlnd thats faster still

link|flag
Do you have any reference for that? I'd be interested in knowing. – David Sep 24 '08 at 18:44
Me too, a source would be killer to such a claim. – Till Sep 24 '08 at 19:29
[citation-needed] – Mez Sep 27 '08 at 14:53
myphpdigest.com/tutorial/… blogs.vinuthomas.com/2006/08/… dealnews.com/developers/php-mysql.html There are a bunch of others who have done benchmarks but i'd encourage you to do your own and see what works for you. – Marc Gear Sep 29 '08 at 12:35
vote up -1 vote down

use array_key_exists() to find values in arrays rather than in_array()

link|flag
That doesn't even make sense - in_array checks for values, array_key_exists checks for indexes/keys. – Nouveau Sep 24 '08 at 15:55
if you're just checking that a particular value exists in an array in_array() is a slow way to do it, array_key_exists(array_flip($array)) is likely to be faster. – Marc Gear Sep 24 '08 at 16:05
in_array is faster than array_flip + array_key_exists. $letters = range('a', 'b'); for ($i = 0; $i < 100000; ++$i) { array_key_exists('f', array_flip($letters)); } // time: 0.358922958374 for ($i = 0; $i < 100000; ++$i) { in_array('f', $letters); } // time: 0.143461942673 – David Sep 24 '08 at 18:42
Ok, it munged my example, but in_array is about twice as fast. – David Sep 24 '08 at 18:42
vote up 4 vote down

There are dozens of small preformance tweaks; For example:

$text = 'test'; is faster as $text = "test"; (because the double quote's parse variables) BUT: $text = "testing: $text"; is faster as $text = 'testing: ' . $text;

link|flag
Why? That didn't make any sense to me. – d03boy Sep 24 '08 at 16:08
Just try it out with a microtime check; You'll see, parsing a string is faster as concatenating. – D4V360 Sep 24 '08 at 21:45
vote up 0 vote down

prefer require and include over thier _once counterparts

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.

link|flag
Why is that faster? – Jrgns Sep 24 '08 at 15:17
Because require_once requires checks to see if the file has been included before. Benchmark it yourself and you'll see its noticably slower – Marc Gear Sep 24 '08 at 15:24
Put the explanation in the answer please. – Jrgns Sep 24 '08 at 15:29
But why would anyone require twice? – d03boy Sep 24 '08 at 17:03
Require kills the script if the file is not found, include does not. *_once kills the script if it attempts to incl/req a file more than once. It uses a small cache to store filenames but is a very slight speed disadv. I continue to use their _once counterparts if I only need it once. – Ross Sep 24 '08 at 19:03
vote up 2 vote down

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.

echo 'This string is faster';
echo "This string is slower";
link|flag
Actually no. PHP is clever enough to compile both into the same bytecode. It helps the parser only. If you have a clever optcode cache "$foo $bar" should be equally fast to $foo . ' ' . $bar. – Armin Ronacher Sep 24 '08 at 16:22
That said, most php applications run without opcode caching, so it is a good idea to use single quotes when you don't want to evaluate the sting and do variable substitution in it. – David Sep 24 '08 at 18:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.