Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
opt
/
php-8.1
/
share
/
test
/
apcu
/
tests
/
//opt/php-8.1/share/test/apcu/tests/apc_store_array_int_keys.phpt
--TEST-- apcu_store() with int keys in array should convert them to string --SKIPIF-- <?php require_once(__DIR__ . '/skipif.inc'); ?> --INI-- apc.enabled=1 apc.enable_cli=1 --FILE-- <?php var_dump(apcu_add(["123" => "test"])); var_dump(apcu_store(["123" => "test"])); var_dump(apcu_add(["123" => "test"])); ?> --EXPECT-- array(0) { } array(0) { } array(1) { [123]=> int(-1) }