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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
--TEST--
"Reference Unpacking - Class ArrayAccess With Reference" list()
--FILE--
<?php
class StorageRef implements ArrayAccess {
private $s = [];
function __construct(array $a) { $this->s = $a; }
function offsetSet ($k, $v): void { $this->s[$k] = $v; }
function &offsetGet ($k): mixed { return $this->s[$k]; }
function offsetExists ($k): bool { return isset($this->s[$k]); }
function offsetUnset ($k): void { unset($this->s[$k]); }
}
$a = new StorageRef([1, 2]);
list(&$one, $two) = $a;
var_dump($a);
$a = new StorageRef([1, 2]);
list(,,list($var)) = $a;
var_dump($a);
$a = new StorageRef([1, 2]);
list(,,list(&$var)) = $a;
var_dump($a);
$a = new StorageRef(['one' => 1, 'two' => 2]);
['one' => &$one, 'two' => $two] = $a;
var_dump($a);
?>
--EXPECT--
object(StorageRef)#1 (1) {
["s":"StorageRef":private]=>
array(2) {
[0]=>
&int(1)
[1]=>
int(2)
}
}
object(StorageRef)#2 (1) {
["s":"StorageRef":private]=>
array(3) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
NULL
}
}
object(StorageRef)#1 (1) {
["s":"StorageRef":private]=>
array(3) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
array(1) {
[0]=>
&NULL
}
}
}
object(StorageRef)#2 (1) {
["s":"StorageRef":private]=>
array(2) {
["one"]=>
&int(1)
["two"]=>
int(2)
}
}
|