On 12/12/2006 12:42 PM, Matthias Pigulla wrote:
Hi internals,

please consider:

<?php
 print PHP_VERSION . "\n";
 $a = array('a', 'b');
 foreach ($a as &$ref) ;
 $b = $a;
 $a[0] = '*';
 print_r($b);
?>

Result:
5.2.0
Array
(
    [0] => *
    [1] => b
)

Did you try a snapshot?

5.2.1-dev
Array
(
   [0] => a
   [1] => b
)



--
Wbr, Antony Dovgal

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to