In php how can I access an array's values without using square brackets around the key? My particular problem is that I want to access the elements of an array returned by a function. Say function(args) returns an array. Why is $var = function(args)[0]; yelling at me about the square brackets? Can I do something like $var = function(args).value(0); or am I missing something very basic?
|
As the others have said, you pretty much have to use a temporary variable:
But, if know the structure of the array being returned it is possible to avoid the temporary variable. If you just want the first member:
If you want the last member:
If you want any one in between:
| |||||||||
feedback
|
|
In PHP, when getting an array as a function result, you unfortunately have to do an extra step:
For objects, this has been relaxed in PHP 5. You can do:
(provided | |||||||||
feedback
|
There is no way to do this without adding a user function unfortunately. It is just not part of the syntax. You could always just do it the old fashion way
| |||
|
feedback
|
|
What exactly matches your expecting is:
answered Kinetix Kin, Taipei | |||
|
feedback
|
|
if you want this, its probably best to be returning an object (unfortunately, its totally lame php doesnt support this). Heres a crazy way i was able to figure out though, out of novelty (please dont do this!):
So yeah..until they add support for array dereferencing in php, i think you should probably just cast the return array as an object:
and then you can do returnsArray()->foo, since php relaxes dereferencing for objects but not arrays.. or of course write a wrapper function like others have suggested. | ||||
feedback
|