📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 17:43:54
📂
/
/
opt
/
alt
/
tests
/
alt-php81-pecl-apcu_5.1.23-1.el8
/
tests
✏️
Editing: apc_002.phpt
--TEST-- APC: apcu_store/fetch with objects --SKIPIF-- <?php require_once(dirname(__FILE__) . '/skipif.inc'); ?> --INI-- apc.enabled=1 apc.enable_cli=1 --FILE-- <?php #[AllowDynamicProperties] class foo { } $foo = new foo; var_dump($foo); apcu_store('foo',$foo); unset($foo); $bar = apcu_fetch('foo'); var_dump($bar); $bar->a = true; var_dump($bar); ?> ===DONE=== --EXPECTF-- object(foo)#%d (0) { } object(foo)#%d (0) { } object(foo)#%d (1) { ["a"]=> bool(true) } ===DONE===
💾 Save Changes
❌ Cancel