1、Ifamethodcanbestatic,declareitstatic.Speedimprovementisbyafactorof4. 1、如果一个函数可以声明为静态的,那么就用静态的,速度是改进的一个因素4. 2、#Avoidmagiclike__get,__set,__autoload 2、避免使用__get,__set,__autoload等魔术函数 3、require_once()isexpensive 3、require_once()是相当昂贵的。 4、Usefullpathsinincludesandrequires,lesstimespentonresolvingtheOSpaths. 4、用include和require时,尽量用全路径,可以减少花在解决OS路径的时间 5、Ifyouneedtofindoutthetimewhenthescrīptstartedexecuting, 网学推荐免费论文原创论文文章排行榜
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn]
您电脑的分辨率是
像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 5、如果你需要知道一个脚本的开始运行时间,用 网学推荐免费论文原创论文文章排行榜
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn]
您电脑的分辨率是
像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 6、Seeifyoucanusestrncasecmp,strPBrkandstriposinsteadofregex 6、如果可以用strncasecmp,strpbrkandstripos就别用正则 7、preg_replaceisfasterthanstr_replace,butstrtrisfasterthanpreg_replacebyafactorof4 7、preg_replace比str_replace要快,但是strtr比preg_replace更快 8、Ifthefunction,suchasstringreplacementfunction,acceptsbotharraysandsinglecharactersasarguments,andifyourargumentlistisnottoolong,considerwritingafewredundantreplacementstatements,passingonecharacteratatime,insteadofonelineofcodethatacceptsarraysassearchandreplacearguments. 一些函数,比如字符串替换函数,接受数组和单个字符做为参数,并且如果你的参数列表不是很长,考虑写一些冗余替换语句,每次传送一个字符,代替一行代码接受数组做为查找和替换的参数。 9、Errorsuppressionwith@isveryslow. 9、禁止错误输出符号@是非常慢的。 10、$row[’id’]is7timesfasterthan$row[id] 10、、$row[’id’]比$row[id]快7倍 11、Errormessagesareexpensive 11、错误信息是非常昂贵的 12、Donotusefunctionsinsideofforloop,suchasfor($x=0;$x<count($array);$x)Thecount()functiongetscalledeachtime. 12、不要在循环内部使用函数,比如:for($x=0;$x<count($array);$x)。count()函数在每次循环中都会被调用。 对于模板,你是否在用smarty?这可能是保证把最经常访问的页面缓存起来的最快的方法了。 (责任编辑:admin) |