Introduction to PHP iterator generators

不言
Release: 2023-04-02 14:44:02
Original
1658 people have browsed it

This article mainly introduces the introduction of PHP iterator generator, which has certain reference value. Now I share it with you. Friends in need can refer to it

Iteration and iterator

Iteration refers to executing a process repeatedly, and each execution is called an iteration. For example, ordinary traversal is iteration:

$arr = [1, 2, 3, 4, 5];foreach($arr as $key => $value) { echo $key . ' => ' . $value . "\n";}
Copy after login

We can see thatforeachtraverses the array and iteratively outputs its contents. Insideforeach, each iteration will assign the value of the current element to$valueand move the array pointer to the next element to prepare for the next iteration, thereby achieving sequence Traverse. The interface that allows external functions to iterate its own internal data isIterator interface, and the corresponding iterated self isIterator object.

PHP provides a unified iterator interface:

Iterator extends Traversable { // 返回当前的元素 abstract public mixed current(void) // 返回当前元素的键 abstract public scalar key(void) // 向下移动到下一个元素 abstract public void next(void) // 返回到迭代器的第一个元素 abstract public void rewind(void) // 检查当前位置是否有效 abstract public boolean valid(void)}
Copy after login

By implementing theIterator interface, we can decide how to traverse the object by ourselves.

Foreach works because these collection classes all implement the Iterable interface, which defines the generation method of Iterator, and foreach moves in the sequence through the Iterable interface.

yield and generator

Compared with iterators, generators provide an easier way to implement simpleobject iteration, with less performance overhead and complexity. Greatly reduced.

A generator function looks like an ordinary function. The difference is that an ordinary function returns a value, while a generator canyieldgenerate many values, and each yield just pauses. The current execution state, when the generator function is called next time, PHP will continue execution from the last paused state.

When we use the generator, we can specify a key name corresponding to the generated value like an associative array. Generating a key-value pair as follows is similar to defining an associative array.

function xrange($start, $limit, $step = 1) { for ($i = $start, $j = 0; $i <= $limit; $i += $step, $j++) { // 给予键值 yield $j => $i; } }$xrange = xrange(1, 10, 2);foreach ($xrange as $key => $value) { echo $key . ' => ' . $value . "\n";}
Copy after login

Conceptual understanding

First clarify a concept:The yield keyword of the generator is not a return value. Its professional term is called output value, which just generates a value. In fact, the generator function returns aGeneratorobject, which cannot be instantiated through new and implements theIteratorinterface.

So what is the loop in the codeforeach? When PHP uses a generator, it will return an object of classGenerator.foreachThe object can be iterated. For each iteration, PHP will calculate the value that needs to be iterated next through theGeneratorinstance. In this wayforeachwill know the value that needs to be iterated next.

Moreover, during operation,forwill stop immediately after the loop is executed. Wait forforeachto askforfor the next value again during the next loop, and then the loop will be executed again, and then immediately Stop again. It will not be executed until the conditions are not met.

Advantages of generators

  • Generators will have a great impact on the performance of PHP applications

  • PHP code saves a lot of memory when running

  • It is more suitable for calculating large amounts of data

Actual development applications: Reading very large files

PHP development often requires reading large files, such as csv files, text files, or some log files. If these files are large, such as 5G. At this time, it is not practical to directly read all the contents into the memory at once. Use the generator to read the file. The first line is read for the first time, the second line is read for the second time, and so on.There is only one line of text loaded into the memory each time, which is greatly Reduced memory usage.

 $value) { # code... echo $value.'
'; }
Copy after login

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

PHP uses Azure Storage Blob to upload files

Introduction to curl requesting other interfaces in the php interface

The above is the detailed content of Introduction to PHP iterator generators. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!