Home >Backend Development >PHP Tutorial >PHP 提升编程效率(二)

PHP 提升编程效率(二)

WBOY
WBOYOriginal
2016-06-23 13:02:00845browse

       1、str_replace函数比preg_replace函数快,但strtr函数的效率是str_replace函数的四倍。

  2、如果一个字符串替换函数,可接受数组或字符作为参数,并且参数长度不太长,那么可以考虑额外写一段替换代码,使得每次传递参数是一个字符,而不是只写一行代码接受数组作为查询和替换的参数。

  3、使用选择分支语句(译注:即switch case好于使用多个if,else if语句。

  4、用@屏蔽错误消息的做法非常低效,极其低效。

  5、打开apache的mod_deflate模块,可以提高网页的浏览速度。

  6、数据库连接当使用完毕时应关掉,不要用长连接。

  7、错误消息代价昂贵。

  8、在方法中递增局部变量,速度是最快的。几乎与在函数中调用局部变量的速度相当。

  9、递增一个全局变量要比递增一个局部变量慢2倍。

  10、递增一个对象属性(如:$this->prop++)要比递增一个局部变量慢3倍。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn