Re: [PHP] Re: References and array indexes

2004-08-05 Thread Curt Zirzow
* Thus wrote Ace: > Gabriel Birke kontor4.de> writes: > > > > > Hello! > > > > The following PHP code: > > > $a = array("1"=>"First Element", "2"=>"Second Element"); > > $v = &$a['3']; > > print_r($a); > > ?> > > has this result: > > > > Array( > > 1 => First Element, > > 2 => Second

[PHP] Re: References and array indexes

2004-08-05 Thread Ace
Gabriel Birke kontor4.de> writes: > > Hello! > > The following PHP code: > $a = array("1"=>"First Element", "2"=>"Second Element"); > $v = &$a['3']; > print_r($a); > ?> > has this result: > > Array( > 1 => First Element, > 2 => Second Element, > 3 => > ) > > Can anyone give