1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/list/destruct_string.phpt

22 lines
324 B
PHP

--TEST--
Destructuring with list() a value of type string
--FILE--
<?php
$v = 'hi';
list($a, $b, $c) = $v;
var_dump($a, $b, $c);
?>
--EXPECTF--
Warning: Cannot use string as array in %s on line %d
Warning: Cannot use string as array in %s on line %d
Warning: Cannot use string as array in %s on line %d
NULL
NULL
NULL