|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2014-08-26 18:07 UTC] requinix@php.net
-Status: Open
+Status: Not a bug
[2014-08-26 18:07 UTC] requinix@php.net
[2014-08-26 20:04 UTC] arjen at react dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 16 20:00:01 2025 UTC |
Description: ------------ Probably in AST refactor. Test script: --------------- $a = array('a', 'b'); list($a, $b) = $a; var_dump($a, $b); Expected result: ---------------- string(1) "a" string(1) "b" Actual result: -------------- string(1) "a" string(0) ""