optimize PHP code performances
If a method can be static, declare it static. Speed improvement is by a factor of 4. echo is faster than print.(* compare with list from phplens by John Lim) 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 [...]





