php-src/ext/spl/tests/spl_007.phpt
2012-10-10 10:27:49 +08:00

25 lines
384 B
PHP

--TEST--
SPL: iterator_apply() with callback using __call()
--FILE--
<?php
class Foo {
public function __call($name, $params) {
echo "Called $name.\n";
return true;
}
}
$it = new ArrayIterator(array(1, 2, 3));
iterator_apply($it, array(new Foo, "foobar"));
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
Called foobar.
Called foobar.
Called foobar.
===DONE===