ID: 12257
Updated by: sander
Reported By: [EMAIL PROTECTED]
Old Summary: list() construct doesn't work as expected.
Status: Open
Old Bug Type: Scripting Engine problem
Bug Type: Feature/Change Request
Operating System: W2000, Debian
PHP Version: 4.0.6
New Comment:
List() can't handle associative arrays. Moved to feature request.
Previous Comments:
------------------------------------------------------------------------
[2001-07-19 11:40:26] [EMAIL PROTECTED]
<?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
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=12257&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]