* 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
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
2 matches
Mail list logo