13 lines
124 B
Plaintext
13 lines
124 B
Plaintext
|
|
--TEST--
|
||
|
|
Destructuring with list() a value of type null
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
list($a) = null;
|
||
|
|
|
||
|
|
var_dump($a);
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
NULL
|