mirror of
https://github.com/php/php-src.git
synced 2026-04-26 01:18:19 +02:00
d30cd7d7e7
Closes GH-5590
22 lines
382 B
PHP
22 lines
382 B
PHP
--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 array key 5 in %s on line %d
|
|
|
|
Notice: Undefined array key "duke" in %s on line %d
|
|
NULL
|
|
NULL
|