<?php $generator = static function (): iterable { yield 0 => 1; yield 'a' => 2; yield null => 3; yield true => 4; }; var_export(iterator_to_array($generator()));
You have javascript disabled. You will not be able to edit any code.