1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/tests/lang/bug25652.phpt
2018-10-14 12:07:20 -03:00

23 lines
328 B
PHP

--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