<?php function bar(iterable $opt = []){ var_dump($opt); } bar(); bar([0,1,2,3]); bar((function(){ yield from [0,1,2,3]; })());
You have javascript disabled. You will not be able to edit any code.