vote up 4 vote down star
1

Why is it not possible to do something equivalent to this in PHP:

(Array(0))[0];

This is just for sake of argument, but it seems strange it does not allow access of anonymous objects. I would have to do something like the following:

$array = Array(0);
$array[0];

Any ideas why this is the behavior of PHP?

flag

78% accept rate
Wow, that pissed me off in PHP4. They still haven't fixed that‽ – derobert Mar 18 at 4:56

4 Answers

vote up 4 vote down check

I read something somewhat detailed about this once and I regret not bookmarking it because it was quite insightful. However, it's something along the lines of

"Because the array does not exist in memory until the current statement (line) executes in full (a semicolon is reached)"

So, basically, you're only defining the array - it's not actually created and readable/accessible until the next line.

I hope this somewhat accurately sums up what I only vaguely remember reading many months ago.

link|flag
1  
Shame you can't remember the URL – Jotham Mar 18 at 12:36
vote up 3 vote down

This language feature hasn’t been inplemented yet but will come in PHP 6.

link|flag
vote up 0 vote down

The main reason is because unlike some languages like Python and JavaScript, Array() (or in fact array()) is not an object, but an language construct which creates an inbuilt data type. Inbuilt datatypes themselves aren't objects either, and the array() construct doesn't return a reference to the "object" but the actual value itself when can then be assigned to a variable.

link|flag
vote up 1 vote down

I guess the short answer is: nobody has coded it yet. I've used (and loved) that syntax in both Python and Javascript, but still we wait for PHP.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.