1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/opcache/tests/bug79665.phpt
Christoph M. Becker d23cd354c0 Fix #79665: ini_get() and opcache_get_configuration() inconsistency
Overriding the given INI values in modifier callbacks is not possible,
so instead of enforcing "normalized" internal values, we just reject
the attempted changes.
2020-06-03 11:07:25 +02:00

28 lines
742 B
PHP

--TEST--
Bug #79665 (ini_get() and opcache_get_configuration() may be inconsistent)
--SKIPIF--
<?php
require __DIR__ . '/skipif.inc';
?>
--INI--
opcache.max_wasted_percentage=60
opcache.memory_consumption=7
opcache.max_accelerated_files=10
--FILE--
<?php
$config = opcache_get_configuration();
var_dump(ini_get('opcache.max_wasted_percentage'));
var_dump($config['directives']['opcache.max_wasted_percentage']);
var_dump(ini_get('opcache.memory_consumption'));
var_dump($config['directives']['opcache.memory_consumption']);
var_dump(ini_get('opcache.max_accelerated_files'));
var_dump($config['directives']['opcache.max_accelerated_files']);
?>
--EXPECT--
string(1) "5"
float(0.05)
string(3) "128"
int(134217728)
string(5) "10000"
int(10000)