To sum things up...
- 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.
- 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.
- Use require and include instead of require_once and include_once, which are slower.
- echo is faster than print
- $_SERVER['REQUEST_TIME'] is faster than time(), which invokes a system call (php5)
- Calculate the limit for a for loop before the loop, not in the loop condition.
- Only inlcuded code/files/classes that are actually needed.
- Enclose literal strings in single quotes unless they actually contain variables you want to evaluate and insert into the string.
- 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.
- 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.
- preg_* functions are faster than ereg_* regular expression functions.
- Do as little as possible inside loops, especially avoid many if constructs when possible.
- Free memory with unset, when a variable is no longer needed.
- Using full paths for includes and requires is faster than relative paths.
- Avoid "magic" functions when possible. __autoload, __call etc.
- 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.
- Make sure you denormalize your database in key areas where appropriate.
- Make sure you have indices where needed.
- Make sure you don't have unneeded indices.
- Optimize your queries. For example an IN() sub-query is many,many times slower than an INNER JOIN sub-query.
