mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
Overriding the given INI values in modifier callbacks is not possible, so instead of enforcing "normalized" internal values, we just reject the attempted changes.
28 lines
742 B
PHP
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)
|