mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
26 lines
393 B
PHP
26 lines
393 B
PHP
--TEST--
|
|
Bug #34678 (__call(), is_callable() and static methods)
|
|
--FILE--
|
|
<?php
|
|
class A {
|
|
public function __call($m, $a) {
|
|
echo "__call\n";
|
|
}
|
|
}
|
|
|
|
class B extends A {
|
|
public static function foo() {
|
|
echo "foo\n";
|
|
}
|
|
}
|
|
|
|
if (is_callable(array('B', 'foo'))) {
|
|
call_user_func(array('B', 'foo'));
|
|
}
|
|
if (is_callable(array('A', 'foo'))) {
|
|
call_user_func(array('A', 'foo'));
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
foo
|