[PHP-DEV] PHP 4.0 Bug #6768: list() construct reference assignment From: nathan <email protected>
Date: 09/15/00

From: nathan <email protected>
Operating system: Linux 2.2.14
PHP version: 4.0.2
PHP Bug Type: Feature/Change Request
Bug description: list() construct reference assignment

I'm requesting that that the list() construct which is an assignment construct, assign variable references. Like such..

<?
$array = array(1, 2, 3);

list($a, $b, &$c) = $array;

?>

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>