<?php function yieldItems() { yield 1; yield 2; yield 3; yield from [4, 5, 6]; yield from [7, 8, 9]; } var_dump( iterator_to_array( yieldItems() ) );
You have javascript disabled. You will not be able to edit any code.