1--TEST-- 2Bind static deoptimization 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.file_update_protection=0 7--FILE-- 8<?php 9function test($n) { 10 static $x = array(A); 11 return isset($x[$n]); 12} 13define("A", 42); 14for ($i = 0; $i < 5; $i++) { 15 var_dump(test(0)); 16} 17?> 18--EXPECT-- 19bool(true) 20bool(true) 21bool(true) 22bool(true) 23bool(true) 24