1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
--TEST--
apcu_fetch should work for multiple reference groups
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--INI--
apc.enabled=1
apc.enable_cli=1
--FILE--
<?php
$x = [];
$y = [];
$array = [&$x, &$x, &$y, &$y];
apcu_store("ary", $array);
$copy = apcu_fetch("ary");
$copy[0][1] = new stdClass();
var_dump($array);
var_dump($copy);
?>
--EXPECT--
array(4) {
[0]=>
&array(0) {
}
[1]=>
&array(0) {
}
[2]=>
&array(0) {
}
[3]=>
&array(0) {
}
}
array(4) {
[0]=>
&array(1) {
[1]=>
object(stdClass)#1 (0) {
}
}
[1]=>
&array(1) {
[1]=>
object(stdClass)#1 (0) {
}
}
[2]=>
&array(0) {
}
[3]=>
&array(0) {
}
}
|