show/hide this revision's text 2 added more.

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.
show/hide this revision's text 1

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.