Home > php教程 > php手册 > body text

技巧分享 PHP性能优化

WBOY
Release: 2016-06-13 11:11:21
Original
1139 people have browsed it

“用i+=1代替i=i+1。符合c/c++的习惯,效率还高”;

对global变量,应该用完就unset()掉

尽量的少进行文件操作,虽然PHP的文件操作效率也不低的;

优化Select SQL语句,在可能的情况下尽量少的进行Insert、Update操作(在update上,我被恶批过)达到PHP性能优化的目的;

尽可能的使用PHP内部函数(但是我却为了找个PHP里面不存在的函数,浪费了本可以写出一个自定义函数的时间,经验问题啊!);

在可以用file_get_contents替代file、fopen、feof、fgets等系列方法的情况下,尽量用 file_get_contents,因为他的效率高得多!但是要注意file_get_contents在打开一个URL文件时候的PHP版本问题;

循环内部不要声明变量,尤其是大变量:对象(这好像不只是PHP里面要注意的问题吧?);

多维数组尽量不要循环嵌套赋值;

在可以用PHP内部字符串操作函数的情况下,不要用正则表达式;

foreach效率更高,尽量用foreach代替while和for循环;

用单引号替代双引号引用字符串以实现PHP性能优化;

在多重嵌套循环中,如有可能,应当将最长的循环放在内层,最短循环放在外层,这样就可以减少cpu跨切循环层的次数,从而优化程序性能。


source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template