|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-08-31 10:23 UTC] sander@php.net
[2002-03-27 21:24 UTC] philip@php.net
[2010-12-14 12:05 UTC] jani@php.net
-Package: Feature/Change Request
+Package: Scripting Engine problem
-Operating System: W2000, Debian
+Operating System: *
-PHP Version: 4.0.6
+PHP Version: *
[2016-03-27 21:04 UTC] nikic@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: nikic
[2016-03-27 21:04 UTC] nikic@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 18:00:01 2025 UTC |
<?php $tmp=array(0=>1, "test"=>2); list($xx,$yy)=$tmp; echo("$xx, $yy"); ?> ---Output:start--- 1, ---Output:end----- Variable $yy is empty (only if key name is not integer). $tmp=array(0=>1, 1=>2); In this case - it works... Danny