What is the difference between a generator and an array?

后端 未结 4 697
面向向阳花
面向向阳花 2021-01-31 15:35

Today the PHP team released the PHP 5.5.0 version, which includes support for generators. Reading the documentation, I noticed that it does exactly what it coul

4条回答
  •  情话喂你
    2021-01-31 15:45

    Generators allow for lazy evaluation of complex statements. That way you save memory as you don't have to allocate everything at once.

    Besides both being iterable they aren't nearly the same. An array is a data structure, a generator is not.

提交回复
热议问题