<?php function gen() { foreach(['first value', 'second value', 'third value'] as $val) { yield $val; } } list($first, $second, $third) = gen(); var_dump($first, $second, $third);
You have javascript disabled. You will not be able to edit any code.