mirror of
https://github.com/php/php-src.git
synced 2024-12-20 15:30:38 +08:00
22 lines
375 B
Plaintext
22 lines
375 B
Plaintext
|
--TEST--
|
||
|
list() with undefined keys
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
$contrivedMixedKeyTypesExample = [
|
||
|
7 => "the best PHP version",
|
||
|
"elePHPant" => "the cutest mascot"
|
||
|
];
|
||
|
|
||
|
list(5 => $five, "duke" => $duke) = $contrivedMixedKeyTypesExample;
|
||
|
|
||
|
var_dump($five, $duke);
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Notice: Undefined offset: 5 in %s on line %d
|
||
|
|
||
|
Notice: Undefined index: duke in %s on line %d
|
||
|
NULL
|
||
|
NULL
|