php-src/Zend/tests/call_static_002.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

27 lines
398 B
PHP

--TEST--
Testing __call and __callstatic with callbacks
--FILE--
<?php
class Foo {
public function __call($a, $b) {
print "nonstatic\n";
var_dump($a);
}
static public function __callStatic($a, $b) {
print "static\n";
var_dump($a);
}
}
$a = new Foo;
call_user_func(array($a, 'aAa'));
call_user_func(array('Foo', 'aAa'));
?>
--EXPECT--
nonstatic
string(3) "aAa"
static
string(3) "aAa"