42条 优化PHP程序的方法小结PHP在线培训平台我赢职场的小编在网上发现一篇非常不错的PHP学习文章,分享给大家: 42条 优化PHP程序的方法小结(中英对照)。 1. If a method c+an be static, declare it static. Speed improvement is by a factor of 4. 如果一个方法可静态化,就对它做静态声明。速率可提升至4倍。2. echo is faster than print. echo 比 print 快。3. Use echos multiple parameters instead of string concatenation. 使用echo的多重参数(译注:指用逗号而不是句点)代替字符串连接。4. Set the maxvalue for your for-loops before and not in the loop. 在执行for循环之前确定最大循环数,不要每循环一次都计算最大值。5. Unset your variable