Sign in
apache
/
netbeans
/
419f65eb0cccf624032c1c4925bf8d58069043ae
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
symmetricArrayDestructuring_01.php
blob: c223a91c415ccad9887e6e05c469321ee049dcdc [
file
] [
log
] [
blame
]
<?
php
$data
=
[
[
1
,
'Tom'
],
[
2
,
'Fred'
],
];
list
(
$id1
,
$name1
)
=
$data
[
0
];
[
$id1
,
$name1
]
=
$data
[
0
];
foreach
(
$data
as
list
(
$id
,
$name
))
{
}
foreach
(
$data
as
[
$id
,
$name
])
{
}