1--TEST-- 2DCE 007: Escaping of enclosed arrays doesn't prevent removal of enclosing array 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.optimization_level=-1 7opcache.opt_debug_level=0x20000 8opcache.preload= 9--SKIPIF-- 10<?php require_once('skipif.inc'); ?> 11--FILE-- 12<?php 13function esc($x) { 14 $a = [$x]; 15 $b = [$a]; 16 return $a; 17} 18--EXPECTF-- 19$_main: ; (lines=1, args=0, vars=0, tmps=0) 20 ; (after optimizer) 21 ; %sdce_007.php:1-7 22L0 (7): RETURN int(1) 23 24esc: ; (lines=3, args=1, vars=2, tmps=0) 25 ; (after optimizer) 26 ; %sdce_007.php:2-6 27L0 (2): CV0($x) = RECV 1 28L1 (3): CV1($a) = INIT_ARRAY 1 (packed) CV0($x) NEXT 29L2 (5): RETURN CV1($a) 30