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