24 lines
319 B
Plaintext
24 lines
319 B
Plaintext
|
|
--TEST--
|
||
|
|
Inlining through call_user_func()
|
||
|
|
--INI--
|
||
|
|
opcache.enable=1
|
||
|
|
opcache.enable_cli=1
|
||
|
|
opcache.optimization_level=-1
|
||
|
|
--EXTENSIONS--
|
||
|
|
opcache
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
function get_const() {
|
||
|
|
return 42;
|
||
|
|
}
|
||
|
|
|
||
|
|
function test() {
|
||
|
|
$x = new stdClass;
|
||
|
|
var_dump(call_user_func('get_const', $x));
|
||
|
|
}
|
||
|
|
|
||
|
|
test();
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
int(42)
|