4 February 2011 0 Comments

[PHP] Optimize PHP code basic tips

[PHP] Optimize PHP code basic tips

As i mention in my echo vs print article, there are few basic tips to write a optimize PHP code. You are aware with echo and print that echo is faster so always prefer to use echo rather than use print. Now you use single quote as well as double quote to output simple string using echo statement. Single quote is faster than double quote, use comma instead of dot in echo..