Lines Matching refs:iterator_apply
2 SPL: iterator_apply()
35 var_dump(iterator_apply($it, 'test', NULL));
38 var_dump(iterator_apply($it, 'test_arg', array($it)));
42 var_dump(iterator_apply($it, 'test'));
45 var_dump(iterator_apply($it, 'test', 1));
46 var_dump(iterator_apply($it, 'non_existing_function'));
47 var_dump(iterator_apply($it, 'non_existing_function', NULL, 2));
77 Error: Argument 3 passed to iterator_apply() must be of the type array, integer given
78 Error: iterator_apply() expects parameter 3 to be array, integer given
80 Error: iterator_apply() expects parameter 2 to be a valid callback, function 'non_existing_function…
82 Error: iterator_apply() expects at most 3 parameters, 4 given