mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
25 lines
384 B
PHP
Executable File
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===
|