<p> 1、Ifamethodcanbestatic,declareitstatic.Speedimprovementisbyafactorof4.</p><p> 1、如果一个函数可以声明为静态的,那么就用静态的,速度是改进的一个因素4.</p><p> 2、#Avoidmagiclike__get,__set,__autoload</p><p> 2、避免使用__get,__set,__autoload等魔术函数</p><p> 3、require_once()isexpensive</p><p> 3、require_once()是相当昂贵的。</p><p> 4、Usefullpathsinincludesandrequires,lesstimespentonresolvingtheOSpaths.</p><p> 4、用include和require时,尽量用全路径,可以减少花在解决OS路径的时间</p><p> 5、Ifyouneedtofindoutthetimewhenthescrīptstartedexecuting,$_SERVER[’REQUEST_TIME’]ispreferredtotime()</p><p> 5、如果你需要知道一个脚本的开始运行时间,用$_SERVER[’REQUEST_TIME’]比用time()要好</p><p> 6、Seeifyoucanusestrncasecmp,strpbrkandstriposinsteadofregex</p><p> 6、如果可以用strncasecmp,strpbrkandstripos就别用正则</p><p> 7、preg_replaceisfasterthanstr_replace,butstrtrisfasterthanpreg_replacebyafactorof4</p><p> 7、preg_replace比str_replace要快,但是strtr比preg_replace更快</p><p> 8、Ifthefunction,suchasstringreplacementfunction,acceptsbotharraysandsinglecharactersasarguments,andifyourargumentlistisnottoolong,considerwritingafewredundantreplacementstatements,passingonecharacteratatime,insteadofonelineofcodethatacceptsarraysassearchandreplacearguments.</p><p> 一些函数,比如字符串替换函数,接受数组和单个字符做为参数,并且如果你的参数列表不是很长,考虑写一些冗余替换语句,每次传送一个字符,代替一行代码接受数组做为查找和替换的参数。</p><p> 9、Errorsuppressionwith@isveryslow.</p><p> 9、禁止错误输出符号@是非常慢的。</p><p> 10、$row[’id’]is7timesfasterthan$row[id]</p><p> 10、、$row[’id’]比$row[id]快7倍</p><p> 11、Errormessagesareexpensive</p><p> 11、错误信息是非常昂贵的</p><p> 12、Donotusefunctionsinsideofforloop,suchasfor($x=0;$x<count($array);$x)Thecount()functiongetscalledeachtime.</p><p> 12、不要在循环内部使用函数,比如:for($x=0;$x<count($array);$x)。count()函数在每次循环中都会被调用。</p><p> 对于模板,你是否在用smarty?这可能是保证把最经常访问的页面缓存起来的最快的方法了。</p>