2010
03-12
03-12
[转]优化PHP代码的40条建议 2977 VIEW
01.
If a method can be static, declare it static. Speed improvement is by a factor of 4.
如果一个方法可静态化,就对它做静态声明。速率可提升至4倍。
02.
echo is faster than print.
echo 比 print 快。
03.
Use echo’s multiple paramete.... Read More >