Table of Contents
静态调用的成员一定要定义成 static (PHP5 ONLY)
使用类常量 (PHP5 ONLY)
(暂时)不要使用 require/include_once
不要调用毫无意义的函数
最快的 Win32 检查
时间问题 (PHP>5.1.0 ONLY)
加速 PCRE
加速 strtr
不要做无谓的替换
邪恶的 @ 操作符
善用 strncmp
慎用 substr_compare (PHP5 ONLY)
不要用常量代替字符串
不要把 count/strlen/sizeof 放到 for 循环的条件语句中
短的代码不一定快
提高 PHP 文件访问效率
物尽其用
关于引用的技巧
Home php教程 php手册 榨干PHP性能的使用细节

榨干PHP性能的使用细节

Jun 13, 2016 am 09:38 AM
php performance

PHP可以从很多细节部分去提高执行效率,下面来个汇总。

静态调用的成员一定要定义成 static (PHP5 ONLY)

PHP 5 引入了静态成员的概念,作用和 PHP 4 的函数内部静态变量一致,但前者是作为类的成员来使用。静态变量和 Ruby 的类变量(class variable)差不多,所有类的实例共享同一个静态变量。

<?php
class foo {
	function bar() {
       echo 'foobar';
	}
}
$foo = new foo;
// instance way
$foo->bar();
// static way
foo::bar();
?>
Copy after login

静态地调用非 static 成员,效率会比静态地调用 static 成员慢 50-60%。主要是因为前者会产生 E_STRICT 警告,内部也需要做转换。

使用类常量 (PHP5 ONLY)

PHP 5 新功能,类似于 C++ 的 const。

使用类常量的好处是:

  • 编译时解析,没有额外开销
  • 杂凑表更小,所以内部查找更快
  • 类常量仅存在于特定「命名空间」,所以杂凑名更短
  • 代码更干净,使除错更方便

(暂时)不要使用 require/include_once

require/include_once 每次被调用的时候都会打开目标文件!

如果用绝对路径的话,PHP 5.2/6.0 不存在这个问题,新版的 APC 缓存系统已经解决这个问题。

文件 I/O 增加 => 效率降低,如果需要,可以自行检查文件是否已被 require/include。

不要调用毫无意义的函数

有对应的常量的时候,不要使用函数。

<?php
	php_uname('s') == PHP_OS;
	php_version() == PHP_VERSION;
	php_sapi_name() == PHP_SAPI;
?>
Copy after login

虽然使用不多,但是效率提升大概在 3500% 左右。

最快的 Win32 检查

<?php
$is_win = DIRECTORY_SEPARATOR == '\\';
?>
Copy after login
  • 不用函数
  • Win98/NT/2000/XP/Vista/Longhorn/Shorthorn/Whistler...通用
  • 一直可用

时间问题 (PHP>5.1.0 ONLY)

你如何在你的软件中得知现在的时间?简单,「time() time() again, you ask me...」。

不过总归会调用函数,慢。

现在好了,用 $_SERVER['REQUEST_TIME'],不用调用函数,又省了。

加速 PCRE

对于不用保存的结果,不用 (),一律用 (?:)。这样 PHP 不用为符合的内容分配内存,省。效率提升 15% 左右。

能不用正则,就不用正则,在分析的时候仔细阅读手册「字符串函数」部分。有没有你漏掉的好用的函数?

strpbrk()
strncasecmp()
strpos()/strrpos()/stripos()/strripos()
Copy after login

加速 strtr

如果需要转换的全是单个字符的时候,用字符串而不是数组来做 strtr:

<?php
$addr = strtr($addr, "abcd", "efgh"); // good
$addr = strtr($addr, array('a' => 'e',
                        // ...
                        )); // bad
?>
Copy after login

效率提升:10 倍。

不要做无谓的替换

即使没有替换,str_replace 也会为其参数分配内存。很慢!解决办法:用 strpos 先查找(非常快),看是否需要替换,如果需要,再替换。

如果需要替换:效率几乎相等,差别在 0.1% 左右。如果不需要替换:用 strpos 快 200%。

邪恶的 @ 操作符

不要滥用 @ 操作符。虽然 @ 看上去很简单,但是实际上后台有很多操作。用 @ 比起不用 @,效率差距:3 倍。

特别不要在循环中使用 @,在 5 次循环的测试中,即使是先用 error_reporting(0) 关掉错误,在循环完成后再打开,都比用 @ 快。

善用 strncmp

当需要对比「前 n 个字符」是否一样的时候,用 strncmp/strncasecmp,而不是 substr/strtolower,更不是 PCRE,更千万别提 ereg。strncmp/strncasecmp 效率最高(虽然高得不多)。

慎用 substr_compare (PHP5 ONLY)

按照上面的道理,substr_compare 应该比先 substr 再比较快咯。答案是否定的,除非:无视大小写的比较,比较较大的字符串。

不要用常量代替字符串

为什么呢?

  • 需要查询杂凑表两次
  • 需要把常量名转换为小写(进行第二次查询的时候)
  • 生成 E_NOTICE 警告
  • 会建立临时字符串

效率差别:700%。

不要把 count/strlen/sizeof 放到 for 循环的条件语句中

我的个人做法

<?php
for ($i = 0, $max = count($array);$i < $max; ++$i);
?>
Copy after login

短的代码不一定快

Copy after login

你觉得哪个快?

- longest: 4.27
- longer: 4.43
- short: 4.76
Copy after login

不可思议?再来一个:

<?php
// original
$d = dir('.');
while (($entry = $d->read()) !== false) {
if ($entry == '.' || $entry == '..') {
       continue;
}
}
// versus
glob('./*');
// versus (include . and ..)
scandir('.');
?>
Copy after login

效率比较:

- original: 3.37
- glob: 6.28
- scandir: 3.42
- original without OO: 3.14
- SPL (PHP5): 3.95
Copy after login

从此也可以看出来 PHP5 的面向对象效率提高了很多,效率已经和纯函数差得不太多了。

提高 PHP 文件访问效率

需要包含其他 PHP 文件的时候,使用完整路径,或者容易转换的相对路径。

<?php
include 'file.php'; // bad approach
incldue './file.php'; // good
include '/path/to/file.php'; // ideal
?>
Copy after login

物尽其用

PHP 有很多扩展和函数可用,在实现一个功能的之前,应该看看 PHP 是否有了这个功能?是否有更简单的实现?

<?php
$filename = "./somepic.gif";
$handle = fopen($filename, "rb");
$contents = fread($handle, filesize($filename));
fclose($handle);
// vs. much simpler
file_get_contents('./somepic.gif');
?>
Copy after login

关于引用的技巧

引用可以简化对复杂结构数据的访问,优化内存使用。

<?php
$a['b']['c'] = array();
// slow 2 extra hash lookups per access
for ($i = 0; $i < 5; ++$i)
$a['b']['c'][$i] = $i;
// much faster reference based approach
$ref =& $a['b']['c'];
for ($i = 0; $i < 5; ++$i)
$ref[$i] = $i;
?>
Copy after login
<?php
$a = 'large string';
// memory intensive approach
function a($str)
{
return $str.'something';
}
// more efficient solution
function a(&$str)
{
$str .= 'something';
}
?>
Copy after login
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use PHP for performance analysis and tuning How to use PHP for performance analysis and tuning Jun 06, 2023 pm 01:21 PM

As a popular server-side language, PHP plays an important role in website development and operation. However, as the amount of PHP code continues to increase and the complexity of applications increases, performance bottlenecks become more and more likely to occur. In order to avoid this problem, we need to perform performance analysis and tuning. This article will briefly introduce how to use PHP for performance analysis and tuning to provide a more efficient running environment for your applications. 1. PHP performance analysis tool 1.XdebugXdebug is a widely used code analysis tool.

How to use concurrent programming framework to improve PHP performance How to use concurrent programming framework to improve PHP performance Aug 12, 2023 am 09:33 AM

How to use concurrent programming framework to improve PHP performance As the complexity of web applications continues to increase, high concurrency processing has become a challenge faced by developers. The traditional PHP language has performance bottlenecks when handling concurrent requests, which forces developers to find more efficient solutions. Using concurrent programming frameworks, such as Swoole and ReactPHP, can significantly improve PHP's performance and concurrent processing capabilities. This article will introduce how to improve the performance of PHP applications by using Swoole and ReactPHP. we will

PHP CI/CD vs. PHP Performance: How to Improve Your Project Performance? PHP CI/CD vs. PHP Performance: How to Improve Your Project Performance? Feb 19, 2024 pm 08:06 PM

Introduction to PHPCI/CD CI/CD (Continuous Integration and Continuous Delivery) is a software development practice that helps development teams deliver high-quality software more frequently. The CI/CD process typically includes the following steps: Developers submit code to a version control system. The build system automatically builds code and runs unit tests. If the build and tests pass, the code is deployed to the test environment. Testers test code in a test environment. If the tests pass, the code is deployed to production. How does CI/CD improve the performance of PHP projects? CI/CD can improve the performance of PHP projects for the following reasons: Automated testing. CI/CD processes often include automated testing, which can help development teams find and fix bugs early. this

Security and performance trade-offs in PHP Security and performance trade-offs in PHP Jul 06, 2023 pm 08:57 PM

Summary of security and performance trade-offs in PHP: As a popular web programming language, PHP not only provides a flexible development environment and rich features, but also faces security and performance trade-offs. This article will explore security and performance issues in PHP and provide some code examples to illustrate how to strike a balance between the two. Introduction: In web application development, security and performance are two interrelated but independently important aspects. The server-side language PHP has good programming features and powerful functions. However, it is not suitable for

Performance improvement of PHP functions in containerized environment Performance improvement of PHP functions in containerized environment Apr 13, 2024 pm 03:42 PM

PHP function performance optimization strategies in containerized environments include: Upgrading the PHP version Optimizing PHP configuration (such as increasing memory limits, enabling OPcache, etc.) Using PHP extensions (such as APC, Xdebug, Swoole, etc.) Optimizing container configuration (such as setting memory and CPU limits) )

How to use Memcache to improve the performance of PHP applications? How to use Memcache to improve the performance of PHP applications? Nov 07, 2023 pm 12:02 PM

Memcache is an efficient caching solution that can greatly improve the performance of PHP applications. In this article, we'll cover how to use Memcache to optimize the performance of your PHP applications and provide practical PHP code examples. What is Memcache? Memcache is an open source distributed caching solution that stores data in memory to provide fast responses. Because the data is stored in memory, queries are very fast. Resolved with other databases

How to use microservices to improve the performance and responsiveness of PHP functions? How to use microservices to improve the performance and responsiveness of PHP functions? Sep 18, 2023 pm 12:03 PM

How to use microservices to improve the performance and responsiveness of PHP functions? In the increasingly developing Internet era, high performance and fast response have become users' basic requirements for websites and applications. As a commonly used back-end development language, PHP also needs to continuously improve its performance and response speed to meet user needs. The microservice architecture has become an excellent solution, which can not only improve the performance of PHP applications, but also provide better scalability and maintainability. This article will explain how to use microservices to improve the performance of PHP functions

How to use PHP for performance analysis and tuning How to use PHP for performance analysis and tuning Jun 06, 2023 pm 01:21 PM

As a popular server-side language, PHP plays an important role in website development and operation. However, as the amount of PHP code continues to increase and the complexity of applications increases, performance bottlenecks become more and more likely to occur. In order to avoid this problem, we need to perform performance analysis and tuning. This article will briefly introduce how to use PHP for performance analysis and tuning to provide a more efficient running environment for your applications. 1. PHP performance analysis tool 1.XdebugXdebug is a widely used code analysis tool.

See all articles