mirror of
https://github.com/php/php-src.git
synced 2025-01-10 13:03:54 +08:00
a9497cecf3
We need to compute the auto globals mask before EG(symbol_table) is cleaned out.
17 lines
285 B
PHP
17 lines
285 B
PHP
--TEST--
|
|
Handling of auto globals during preloading
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=-1
|
|
opcache.preload={PWD}/preload_globals.inc
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
$x = 123;
|
|
var_dump(get_x());
|
|
?>
|
|
--EXPECT--
|
|
int(123)
|