- var_dump: documentation ( source)
- iterator_to_array: documentation ( source)
<?php
function gen()
{
foreach(['first value', 'second value', 'third value'] as $val)
{
yield $val;
}
}
list($first, $second, $third) = iterator_to_array(gen());
var_dump($first, $second, $third);