From: [EMAIL PROTECTED] Operating system: W2000, Debian PHP version: 4.0.6 PHP Bug Type: Scripting Engine problem Bug description: list() construct doesn't work as expected. <?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 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]