blob: d4b2d391a03109621fd0c0db0e38f22c02446238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--TEST--
Inlining throgh call_user_func()
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function get_const() {
return 42;
}
function test() {
$x = new stdClass;
var_dump(call_user_func('get_const', $x));
}
test();
?>
--EXPECTF--
int(42)
|