1--TEST--
2Test that the directives listed with `opcache_get_configuration` include all those from the ini settings.
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.opt_debug_level=0
7--EXTENSIONS--
8opcache
9--FILE--
10<?php
11$opts = opcache_get_configuration()['directives'];
12$inis = ini_get_all('zend opcache');
13var_dump(array_diff_key($inis, $opts));
14?>
15--EXPECT--
16array(0) {
17}