1--TEST-- 2Bug GH-9259 001 (Setting opcache.interned_strings_buffer to a very high value leads to corruption of shm) 3--EXTENSIONS-- 4opcache 5--INI-- 6opcache.interned_strings_buffer=131072 7opcache.log_verbosity_level=2 8opcache.enable_cli=1 9--FILE-- 10<?php 11 12echo 'OK'; 13 14?> 15--EXPECTF-- 16%sWarning opcache.interned_strings_buffer must be less than or equal to 4095, 131072 given%s 17 18OK 19