43 Tips Mengoptimalkan Kode Script PHP
Here is the list of 43 short tips you can use for writing an optimized and more efficient PHP code:
- If a method can be static, declare it static. Speed improvement is by a factor of 4.
echo
is faster thanprint
.- Use echo's multiple parameters instead of string concatenation.
- Set the maxvalue for your for-loops before and not in the loop.
- Unset your variables to free memory, especially large arrays.
- Avoid magic like __get, __set, __autoload
require_once()
is expensive- Use full paths in includes and requires, less time spent on resolving the OS paths.
- If you need to find out the time when the script started executing,
@import url("css/widgContent.css");
INSERT:CONTENT:END SERVER['REQUEST_TIME'] is preferred totime()
- See if you can use strncasecmp, strpbrk and stripos instead of regex
str_replace
is faster thanpreg_replace
, butstrtr
is faster thanstr_replace
by a factor of 4- If the function, such as string replacement function, acceptsboth arrays and single characters as arguments, and if your argumentlist is not too long, consider writing a few redundant replacementstatements, passing one character at a time, instead of one line ofcode that accepts arrays as search and replace arguments.
- It's better to use select statements than multi if, else if, statements.
- Error suppression with @ is very slow.
- Turn on apache's mod_deflate
- Close your database connections when you're done with them
$row['id']
is 7 times faster than$row[id]
- Error messages are expensive
- Do not use functions inside of for loop, such as
for ($x=0; $x < count($array); $x)
The count() function gets called each time. - Incrementing a local variable in a method is the fastest. Nearly the same as calling a local variable in a function.
- Incrementing a global variable is 2 times slow than a local var.
- Incrementing an object property (eg.
$this->prop++
) is 3 times slower than a local variable. - Incrementing an undefined local variable is 9-10 times slower than a pre-initialized one.
- Just declaring a global variable without using it in afunction also slows things down (by about the same amount asincrementing a local var). PHP probably does a check to see if theglobal exists.
- Method invocation appears to be independent of the number ofmethods defined in the class because I added 10 more methods to thetest class (before and after the test method) with no change inperformance.
- Methods in derived classes run faster than ones defined in the base class.
- A function call with one parameter and an empty function body takes about the same time as doing 7-8
$localvar++
operations. A similar method call is of course about 15$localvar++
operations. - Surrounding your string by ' instead of "
will make things interpret a little faster since php looks for variables inside
”..." but not inside '...'. Of course you can only do this when you don't need to have variables in the string. - When echoing strings it's faster to separate them by commainstead of dot. Note: This only works with echo, which is a functionthat can take several strings as arguments.
- A PHP script will be served at least 2-10 times slower thana static HTML page by Apache. Try to use more static HTML pages andfewer scripts.
- Your PHP scripts are recompiled every time unless thescripts are cached. Install a PHP caching product to typically increaseperformance by 25-100% by removing compile times.
- Cache as much as possible. Use memcached - memcached is ahigh-performance memory object caching system intended to speed updynamic web applications by alleviating database load. OP code cachesare useful so that your script does not have to be compiled on everyrequest
- When working with strings and you need to check that thestring is either of a certain length you'd understandably would want touse the strlen() function. This function is pretty quick since it'soperation does not perform any calculation but merely return thealready known length of a string available in the zval structure(internal C struct used to store variables in PHP). However becausestrlen() is a function it is still somewhat slow because the functioncall requires several operations such as lowercase & hashtablelookup followed by the execution of said function. In some instance youcan improve the speed of your code by using an isset() trick.
Example:
if (strlen($foo) < 5) { echo "Foo is too short"; }
vs.
if (!isset($foo{5})) { echo "Foo is too short"; }
Calling isset() happens to be faster then strlen() becauseunlike strlen(), isset() is a language construct and not a functionmeaning that it's execution does not require function lookups andlowercase. This means you have virtually no overhead on top of theactual code that determines the string's length.
- When incrementing or decrementing the value of the variable
$i++
happens to be a tad slower then++$i
.This is something PHP specific and does not apply to other languages,so don't go modifying your C or Java code thinking it'll suddenlybecome faster, it won't.++$i
happens to be faster in PHP because instead of 4 opcodes used for$i++
you only need 3. Post incrementation actually causes in the creation ofa temporary var that is then incremented. While pre-incrementationincreases the original value directly. This is one of the optimizationthat opcode optimized like Zend's PHP optimizer. It is a still a goodidea to keep in mind since not all opcode optimizers perform thisoptimization and there are plenty of ISPs and servers running withoutan opcode optimizer. - Not everything has to be OOP, often it is too much overhead, each method and object call consumes a lot of memory.
- Do not implement every data structure as a class, arrays are useful, too
- Don't split methods too much, think, which code you will really re-use
- You can always split the code of a method later, when needed
- Make use of the countless predefined functions
- If you have very time consuming functions in your code, consider writing them as C extensions
- Profile your code. A profiler shows you, which parts of yourcode consumes how many time. The Xdebug debugger already contains aprofiler. Profiling shows you the bottlenecks in overview
- mod_gzip which is available as an Apache module compresses your data on the fly and can reduce the data to transfer up to 80%
- Excellent Article about optimizing php by John Lim