Enquire Now

Tags: php-generators

PHP 5.5 introduces generators and the associated keyword yield. A generator allows for forward only iteration without building an array in memory and in a less time consuming manner. When a function with a yield keyword is declared it returns a Generator class instead of running the method.

0 Questions