Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
opt
/
php-8.2.27-202502031751
/
share
/
test
/
apcu
/
tests
/
//opt/php-8.2.27-202502031751/share/test/apcu/tests/apc_017.phpt
--TEST-- APC should not preserve the IAP --SKIPIF-- <?php require_once(dirname(__FILE__) . '/skipif.inc'); ?> --INI-- apc.enabled=1 apc.enable_cli=1 apc.serializer=default --FILE-- <?php $array = [1, 2, 3]; next($array); apcu_store("ary", $array); $array = apcu_fetch("ary"); var_dump(current($array)); ?> --EXPECT-- int(1)