Wells
Wells

Reputation: 10969

Describe this feature of a programming language

Is there a way to describe the feature of a programming language that allows you to do something like the following:

$foo = return_an_array()[0];

I love this feature in python, and I hate that it's missing in PHP. Is there a name for this?

Upvotes: 1

Views: 171

Answers (1)

SLaks
SLaks

Reputation: 887365

Array indexing on arbitrary expressions

Upvotes: 4

Related Questions