1
0
mirror of https://github.com/php/php-src.git synced 2026-04-04 22:52:40 +02:00
Files
archived-php-src/ext/opcache/tests/bug79665.phpt
Max Semenik e9f783fcdd Migrate skip checks to --EXTENSIONS--, p3
For rationale, see #6787

Extensions migrated in part 3:
* ftp
* gmp
* iconv
* opcache
* shmop
2021-04-03 15:23:25 +02:00

26 lines
712 B
PHP

--TEST--
Bug #79665 (ini_get() and opcache_get_configuration() may be inconsistent)
--EXTENSIONS--
opcache
--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)