<?php $some_array = [ "apples", "oranges", ]; $iterator = function ($data) { foreach ($data as $item) { yield $item; echo "echo: {$item}\n"; } }; foreach($iterator($some_array) as $content) { var_dump($content); }
You have javascript disabled. You will not be able to edit any code.