mirror of
https://github.com/php/php-src.git
synced 2025-01-07 11:34:09 +08:00
e9f783fcdd
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
15 lines
261 B
PHP
15 lines
261 B
PHP
--TEST--
|
|
Bug #65845 (Error when Zend Opcache Optimizer is fully enabled)
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
--EXTENSIONS--
|
|
opcache
|
|
--FILE--
|
|
<?php
|
|
$Pile['vars'][(string)'toto'] = 'tutu';
|
|
var_dump($Pile['vars']['toto']);
|
|
?>
|
|
--EXPECT--
|
|
string(4) "tutu"
|