list_keyed_undefined.phpt   [plain text]


--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