|
Posted by ZeldorBlat on 03/28/07 13:04
On Mar 28, 8:18 am, r...@fourfront.ltd.uk wrote:
> I was led to believe that it was possible to access an array returned
> from a function in php5 without first assigning it to a variable as
> follows ;-
>
> ...
> function setArr()
> {
> return array( 1, 2, 3, 4, 5 ) ;
>
> }
>
> echo setArr()[ 3 ] ;
>
> However this does not work - it just produces a parse error.
> Have I been mis-informed or am I doing it wrong ?
> TIA
What led you to believe that? Where in the documentation does it say
you can do it that way?
[Back to original message]
|