Posted by Chung Leong on 10/14/06 19:09
Hermann.Richter@gmail.com wrote:
> These array functions: 'each', 'current', 'next', 'end'
>
> They return a reference or a value.
They return values.
> let's say I want to modify the last value of an array without iterating
> through all of them.
>
> I would do:
>
> <?
> end($array) ;
> current($array)="new value" ;
> ?>
>
> is that posible??
Try
end($array);
$array[key($array)] = "new value";
[Back to original message]
|