Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,151,851 members, 7,813,892 topics. Date: Tuesday, 30 April 2024 at 08:51 PM

Some Php Optimization Tips - Webmasters - Nairaland

Nairaland Forum / Science/Technology / Webmasters / Some Php Optimization Tips (507 Views)

5 Tips For Search Engine Optimization / Does Anyone Know About Search Engine Optimization? / Advertisement Vs Search Engine Optimization (2) (3) (4)

(1) (Reply) (Go Down)

Some Php Optimization Tips by elvis10ten(m): 11:24pm On Dec 12, 2013
1. If a method can be static, declare it static. Speed improvement is by a factor of 4.
2. echo is faster than print.
3. Use echo's multiple parameters instead of string concatenation.
4. Set the maxvalue for your for-loops before and not in the loop.
5. Unset your variables to free memory, especially large arrays.
6. Avoid magic like __get, __set, __autoload
7. require_once() is expensive
8. Use full paths in includes and requires, less time spent on resolving the OS paths.
9. If you need to find out the time when the script started executing, $_SERVER[’REQUEST_TIME’] is preferred to time()
10. See if you can use strncasecmp, strpbrk and stripos instead of regex.
Re: Some Php Optimization Tips by elvis10ten(m): 11:35pm On Dec 12, 2013
Do not use functions call inside the conditional part of a loop, such as for ($x=0; $x < count($array); $x)
The count() function gets called each time.
Re: Some Php Optimization Tips by elvis10ten(m): 11:39pm On Dec 12, 2013
Pre increment (++$i) is faster than post increment ($i++). You have to know the difference between both tho, else you might end up drinking 5 cards of panadol, because $a = ++$i will not produce the same result with $a = $i++ .
Re: Some Php Optimization Tips by elvis10ten(m): 11:42pm On Dec 12, 2013
add yours.

(1) (Reply)

DidYouKnow Job Site Jobberman's Mobile App Now Has Over 500k Downloads / Partners Needed For A IT Start Up / How To Add Chat To Your Blog

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 9
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.