1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/spl/tests/spl_007.phpt
2008-05-24 14:10:44 +00:00

25 lines
384 B
PHP
Executable File

--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===