40 Tips for optimizing your php code
Great article I found on http://reinholdweber.com/ about optimizing your php code.
- If a method can be static, declare it static. Speed improvement is by a factor of 4.
- echo is faster than print.
- Use echo’s multiple parameters instead of string concatenation.












