mirror of
https://github.com/php/php-src.git
synced 2026-04-22 15:38:49 +02:00
17 lines
282 B
PHP
17 lines
282 B
PHP
--TEST--
|
|
Preloading of anonymous class
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=-1
|
|
opcache.preload={PWD}/preload.inc
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(get_anon());
|
|
?>
|
|
--EXPECT--
|
|
object(class@anonymous)#1 (0) {
|
|
}
|