


Performance optimization is an essential part of our development. The following article mainly introduces you to the performance optimization tool in PHP that you may overlook: the relevant information of the generator. The article introduces it in great detail through example code. Friends in need can refer to it, let’s take a look below.
Preface
If you are a Python or other language developer, you should be familiar with generators. But many PHP developers may not know the generator function. It may be because the generator is a function introduced in PHP 5.5.0, or it may be that the function of the generator is not very obvious. However, the generator function is really useful.
Under what circumstances will you encounter PHP performance problems?
1: Improper use of PHP syntax.
2: Use the PHP language to do things it is not good at.
3: The service connected using PHP language is not powerful.
4: PHP’s own shortcomings (things that PHP itself can’t do).
5: A problem we don’t know about either? (To explore, analyze and find solutions and improve the level of development).
Advantages
- # Pique your interest. So what are the advantages of generators, as follows:
- Generators will have a very large impact on the performance of PHP applications
PHP code runtime Save a lot of memory
More suitable for calculating large amounts of data
Concept introduction
function createRange($number){ $data = []; for($i=0;$i<$number;$i++){ $data[] = time(); } return $data; }This is a very common PHP function that we often use when processing some arrays. The code here is also very simple:
We create a function.
The function contains a for loop. We loop the current time into $data.
After the for loop is executed, $data Go back out.
It’s not over yet, let’s continue. Let’s write another function and print out the return value of this function in a loop: $result = createRange(10); // 这里调用上面我们创建的函数
foreach($result as $value){
sleep(1);//这里停顿1秒,我们后续有用
echo $value.'<br />';
}
It's perfect here, no problems whatsoever. (Of course you can’t see the effect of sleep(1))
Think about a question
- Here, the generator can show its talents.
- Create generator
We modify the code directly, please pay attention:
function createRange($number){
for($i=0;$i<$number;$i++){
yield time();
}
}
Look at this code that is very similar to just now. We deleted the array $data and did not return anything. Instead, we used a keyword yield before time()
Using the generator
foreach($result as $value){
sleep(1); echo $value.'
';
function createRange($number){ for($i=0;$i<$number;$i++){ yield time(); } } $result = createRange(10); // 这里调用上面我们创建的函数 foreach($result as $value){ sleep(1); echo $value.'######### Let’s restore the code execution process. ###
'; }
首先调用createRange函数,传入参数10,但是for值执行了一次然后停止了,并且告诉foreach第一次循环可以用的值。
foreach开始对$result循环,进来首先sleep(1),然后开始使用for给的一个值执行输出。
foreach准备第二次循环,开始第二次循环之前,它向for循环又请求了一次。
for循环于是又执行了一次,将生成的时间戳告诉foreach.
foreach拿到第二个值,并且输出。由于foreach中sleep(1),所以,for循环延迟了1秒生成当前时间
所以,整个代码执行中,始终只有一个记录值参与循环,内存中也只有一条信息。
无论开始传入的$number有多大,由于并不会立即生成所有结果集,所以内存始终是一条循环的值。
概念理解
到这里,你应该已经大概理解什么是生成器了。下面我们来说下生成器原理。
首先明确一个概念:生成器yield关键字不是返回值,他的专业术语叫产出值,只是生成一个值
那么代码中foreach循环的是什么?其实是PHP在使用生成器的时候,会返回一个Generator类的对象。foreach可以对该对象进行迭代,每一次迭代,PHP会通过Generator实例计算出下一次需要迭代的值。这样foreach就知道下一次需要迭代的值了。
而且,在运行中for循环执行后,会立即停止。等待foreach下次循环时候再次和for索要下次的值的时候,for循环才会再执行一次,然后立即再次停止。直到不满足条件不执行结束。
实际开发应用
很多PHP开发者不了解生成器,其实主要是不了解应用领域。那么,生成器在实际开发中有哪些应用?
读取超大文件
PHP开发很多时候都要读取大文件,比如csv文件、text文件,或者一些日志文件。这些文件如果很大,比如5个G。这时,直接一次性把所有的内容读取到内存中计算不太现实。
这里生成器就可以派上用场啦。简单看个例子:读取text文件
我们创建一个text文本文档,并在其中输入几行文字,示范读取。
<?php header("content-type:text/html;charset=utf-8"); function readTxt() { # code... $handle = fopen("./test.txt", 'rb'); while (feof($handle)===false) { # code... yield fgets($handle); } fclose($handle); } foreach (readTxt() as $key => $value) { # code... echo $value.'<br />'; }
通过上图的输出结果我们可以看出代码完全正常。
但是,背后的代码执行规则却一点儿也不一样。使用生成器读取文件,第一次读取了第一行,第二次读取了第二行,以此类推,每次被加载到内存中的文字只有一行,大大的减小了内存的使用。
这样,即使读取上G的文本也不用担心,完全可以像读取很小文件一样编写代码。
总结
您可能感兴趣的文章:
The above is the detailed content of Performance optimization tools in PHP that you may overlook: Generator-related content. For more information, please follow other related articles on the PHP Chinese website!

使用PHP开发实现百度文心一言API接口的性能优化技巧随着互联网的普及,越来越多的开发者使用第三方API接口来获取数据,以丰富自己的应用内容。百度文心一言API接口是广受欢迎的一种数据接口,它可以返回一句随机的励志、哲理或者温馨的语句,可以用于美化程序界面、增加用户体验等方面。然而,在使用百度文心一言API接口时,我们也面临一些性能上的考虑。API调用的速度

如何使用PHP优化网站性能和加载速度随着互联网的快速发展,网站的性能和加载速度越来越受到人们的关注。而作为一种广泛使用的服务器端脚本语言,PHP在优化网站性能和加载速度方面具有重要作用。本文将介绍一些使用PHP的技巧和方法,以提高网站的性能和加载速度。使用缓存机制缓存是提高网站性能的一种有效方法。PHP提供了多种缓存机制,如文件缓存、内存缓存和数

如何通过PHP代码规范规范性能优化引言:随着互联网的迅速发展,越来越多的网站和应用程序基于PHP语言开发。在PHP开发过程中,性能优化是一个至关重要的方面。一个高性能的PHP代码可以显著提高网站的响应速度和用户体验。本文将探讨如何通过PHP代码规范来规范性能优化,并提供一些实际的代码示例供参考。一、减少数据库查询在开发过程中,频繁的数据库查询是一个常见的性能

如何使用PHP进行性能优化和调优在开发Web应用的过程中,性能优化和调优是不可忽视的重要任务。PHP作为一种流行的服务器端脚本语言,也有一些能够提高性能的技巧和工具。本文将介绍一些常见的PHP性能优化和调优方法,并提供示例代码以帮助读者更好地理解。使用缓存缓存是提高Web应用性能的重要手段之一。可以通过使用缓存来减少对数据库的访问,减少IO操作以提高性能。使

PHP7性能优化技巧:如何使用isset函数判断变量是否已声明引言:在PHP开发中,我们经常需要判断一个变量是否已经被声明。这在一些情况下尤其重要,例如在使用未声明的变量时会产生错误。在PHP7中,出于性能优化的考虑,我们应该尽量使用isset函数来判断变量是否已经被声明,而不是直接使用诸如empty、is_null等函数。为什么使用isset:在PHP

在实际开发中,为了让网站或应用程序达到更好的性能和更高的可扩展性,PHP代码的优化是非常重要的一步。以下是一些PHP高性能技巧,帮助你的代码更快地运行。一、最小化函数调用和变量1.1函数调用函数调用对于PHP代码的性能影响非常大,因为每个函数都需要在内存中分配空间。在编写PHP代码时应尽量避免过多的函数调用,可以使用内联函数或自定义函数来替代。1.2变量

如何通过PHP提高网站的性能和响应速度?随着互联网的发展,网站的性能和响应速度对于用户体验和搜索引擎的优化越来越重要。PHP作为一种常用的服务器端脚本语言,对于提高网站的性能和响应速度也起到了关键作用。本文将介绍一些通过PHP提高网站性能和响应速度的方法。一、优化代码使用合适的PHP版本:选择最新的稳定版本,并结合自己的应用需求选择合适的运行方式(CGI/F

随着现代Web应用程序的复杂性不断增加,性能问题已成为开发人员面临的一个主要挑战。其中一个常见的性能瓶颈是数据库或文件系统的频繁访问,这可能导致严重的性能问题。缓存技术就是解决这些问题的一种方法。本文将介绍在PHP中使用缓存的基本知识和实现方法。我们将讨论一些流行的PHP缓存技术和如何将它们集成到我们的应用程序中。什么是缓存?缓存是一种将应用程序


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
