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--SKIPIF-- 8<?php require_once('skipif.inc'); ?> 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}