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.
 
 
 
 
 
 

22 lines
331 B

--TEST--
Bug #25652 (Calling Global functions dynamically fails from Class scope)
--FILE--
<?php
function testfunc ($var) {
echo "testfunc $var\n";
}
class foo {
public $arr = array('testfunc');
function bar () {
$this->arr[0]('testvalue');
}
}
$a = new foo ();
$a->bar ();
?>
--EXPECT--
testfunc testvalue