You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
320 B

--TEST--
Testing callback in alias
--FILE--
<?php
class foo {
static public function test() {
print "hello\n";
}
public function test2() {
print "foobar!\n";
}
}
class_alias('FOO', 'bar');
call_user_func(array('bar', 'test'));
$a = new bar;
call_user_func(array($a, 'test2'));
?>
--EXPECT--
hello
foobar!