up vote 15 down vote favorite
2
share [g+] share [fb]

in php, i often need to map a variable using an array ... but i can not seem to be able to do this in a one liner. c.f. example:

// the following results in an error:
echo array('a','b','c')[$key];

// this works, using an unnecessary variable:
$variable = array('a','b','c');
echo $variable[$key];

this is a minor problem, but it keeps bugging every once in a while ... i don't like the fact, that i use a variable for nothing ;)

link|improve this question

68% accept rate
feedback

9 Answers

up vote 6 down vote accepted

I wouldn't bother about that extra variable, really. If you want, though, you could also remove it from memory after you've used it:

$variable = array('a','b','c');
echo $variable[$key];
unset($variable);

Or, you could write a small function:

function indexonce(&$ar, $index) {
  return $ar[$index];
}

and call this with:

$something = indexonce(array('a', 'b', 'c'), 2);

The array should be destroyed automatically now.

link|improve this answer
Very nice small function, thanks – Math Sep 27 '11 at 15:34
feedback

The technical answer is that the Grammar of the PHP language only allows subscript notation on the end of variable expressions and not expressions in general, which is the case in most other languages. I've always viewed it as a deficiency in the language, because it is possible to have a grammar that resolves subscripts against any expression unambiguously. It could be the case, however, that they're using an inflexible parser generator or they simply don't want to break some sort of backwards compatibility.

Here are a couple more examples of invalid subscripts on valid expressions:

$x = array(1,2,3);
print ($x)[1]; //illegal, inside a parenthetical expression, not a variable

function ret($foo) { return $foo; }
echo ret($x)[1]; // illegal, inside a call expression, not a variable
link|improve this answer
2  
There was a change proposal at least for the second syntax, but it was rejected: wiki.php.net/rfc/functionarraydereferencing – Max May 26 '10 at 11:54
4  
Status is now changed to accepted wiki.php.net/rfc/functionarraydereferencing – michielvoo Sep 20 '10 at 19:53
feedback

This is called array dereferencing. It has been added in php 5.4. http://www.php.net/releases/NEWS_5_4_0_alpha1.txt

link|improve this answer
feedback

@brian-warshaw: afaik the following is very well possible in php:

$object->thisReturnsAnotherObject()->doSomethingWithTheReturnedObject();
link|improve this answer
feedback

This might not be directly related.. But I came to this post finding solution to this specific problem.

I got a result from a function in the following form.

Array
(
    [School] => Array
            (
                [parent_id] => 9ce8e78a-f4cc-ff64-8de0-4d9c1819a56a
            )
)

what i wanted was the parent_id value "9ce8e78a-f4cc-ff64-8de0-4d9c1819a56a". I used the function like this and got it.

array_pop( array_pop( the_function_which_returned_the_above_array() ) )

So, It was done in one line :) Hope It would be helpful to somebody.

link|improve this answer
feedback

Or something like this, if you need the array value in a variable

$variable = array('a','b','c'); $variable = $variable[$key];

link|improve this answer
feedback

actually, there is an elegant solution:) The following will assign the 3rd element of the array returned by myfunc to $myvar:

$myvar = array_shift(array_splice(myfunc(),2));
link|improve this answer
5  
Clever? yes! Elegant? no. – Tom Auger Dec 9 '10 at 0:03
feedback

function doSomething() { return $somearray; }

echo doSomething()->get(1)->getOtherPropertyIfThisIsAnObject();

link|improve this answer
feedback
// the following results in an error:
echo array('a','b','c')[$key];

I SO wish PHP could do this...I completely sympathize with you.

This doesn't work either, unfortunately:

$object->thisReturnsAnotherObject()->doSomethingWithTheReturnedObject();

Actually, it does. Just make each method return $this. On the other hand...you can't do this:

$obj = new Object()->method();

Which is something else on my wishlist.

link|improve this answer
Why would you want to instantiate a new object and then run a method on it in this contracted form? That just begs to have obscure code. What are we really assinging to $obj? the new Object() or the result of its method? If what you meant to do was just call a static method, as of 5.3 you can do Object::method(); and not even bother instantiating the object. – Tom Auger Dec 9 '10 at 0:05
feedback

Your Answer

 
or
required, but never shown

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