我正在尝试将 APC 与 PHP 一起使用。我已经从PHP 手册中复制了用于在 APC 中存储数组的代码;正如我所料,它工作得很好。
当我在失败时引入命名空间时,就会出现我的问题。
<?php
namespace tester;
$objs = array();
$objs[] = "123";
$objs[] = "123";
$objs[] = "123";
apc_store('tester:objs', new ArrayObject($objs),60);
$tmp = apc_fetch('tester:objs');
print_r($tmp -> getArrayCopy());
exit;