Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
158 views
in Technique[技术] by (71.8m points)

php - Interpreting return value of function directly as an array

Is there a way in PHP to interpret the return value of a function directly as an array?

lets say i have a function:

function getArray()  {
  return array("foo", "bar");
}

instead of writing:

$array = getArray();
$var = $array[1];

i want to access "bar" directly somewhat like:

$var = getArray()[1]; //this causes an error
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

What you want is called array dereferencing and will be supported only as of PHP 5.4 (which is the upcoming PHP version).

For now you can use the list language construct:

list(, $var) = getArray();

If you need the value to pass it to some other function, you can still hack around the limitation (this is just for reference, not something you should use):

func(${'_'.!$_=getArray()}[1]); // using the $_ var
func(${!${''}=getArray()}[1]);  // using the $ var

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...