mirror of
https://github.com/php/php-src.git
synced 2026-04-19 22:11:12 +02:00
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
18 lines
312 B
PHP
18 lines
312 B
PHP
--TEST--
|
|
Bug #66461 (PHP crashes if opcache.interned_strings_buffer=0)
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=-1
|
|
opcache.log_verbosity_level=1
|
|
opcache.file_update_protection=0
|
|
opcache.interned_strings_buffer=0
|
|
--EXTENSIONS--
|
|
opcache
|
|
--FILE--
|
|
<?php
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECT--
|
|
ok
|