如何访问函数返回的数组的键
我希望能够直接从函数的返回值访问数组。
e.g.
$arr = find_student();
echo $arr['name'];
// I want to be able to do
echo find_student()['name']
我怎样才能完成同样的任务?没有另一行代码?
I want to be able to access the array directly from the return value of the function.
e.g.
$arr = find_student();
echo $arr['name'];
// I want to be able to do
echo find_student()['name']
How can I accomplish the same ? Without another line of code ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你不能。 PHP 语法解析器受到限制,在当前版本中不允许这样做。
PHP 开发人员为即将发布的 PHP 版本扩展了解析器。这是讨论该问题的博客的链接
You can't. The PHP syntax parser is limited and does not allow it in current versions.
The PHP devs extended the parser for upcoming releases of PHP. Here's a link to a blog talking about it
你不能:)
结果:
解析错误:语法错误,意外的“[”,期望“,”或“;”
You cant :)
Result:
Parse error: syntax error, unexpected '[', expecting ',' or ';'
您可以使用 ArrayObject 执行类似的操作。
缺点是你不能使用像 array_merge() 这样的原生数组函数。但是您可以像访问数组和对象一样访问数据。
You can do something similiar using ArrayObject.
Downside is you cant use native array functions like
array_merge()
on that. But you can access you data as you would on array and like on an object.