调用 PHP 爆炸并访问第一个元素?
可能的重复:
用于取消引用函数结果的 PHP 语法
我有一个字符串,看起来像 1234#5678。现在我这样称呼:
$last = explode("#", "1234#5678")[1]
它不起作用,有一些语法错误......但是在哪里?我期望的是 $last
中的 5678。这在 PHP 中不起作用吗?
Possible Duplicate:
PHP syntax for dereferencing function result
I have a string, which looks like 1234#5678. Now I am calling this:
$last = explode("#", "1234#5678")[1]
Its not working, there is some syntax error...but where? What I expect is 5678 in $last
. Is this not working in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
在当前的 PHP 版本中,数组取消引用是不可能的(不幸的是)。但是您可以使用
list
[docs]< /em> 直接将数组元素分配给变量:更新
自 PHP 5.4(2012 年 3 月 1 日发布)以来,它支持 数组取消引用。
Array dereferencing is not possible in the current PHP versions (unfortunately). But you can use
list
[docs] to directly assign the array elements to variables:UPDATE
Since PHP 5.4 (released 01-Mar-2012) it supports array dereferencing.
PHP 很可能被语法搞糊涂了。只需将
explode
的结果分配给一个数组变量,然后对其使用索引:Most likely PHP is getting confused by the syntax. Just assign the result of
explode
to an array variable and then use index on it:以下是将其精简为一行的方法:
$last = current(array_slice(explode("#", "1234#5678"), indx,1));
其中
indx 是您想要在数组中的索引,在您的示例中为 1。
Here's how to get it down to one line:
$last = current(array_slice(explode("#", "1234#5678"), indx,1));
Where
indx
is the index you want in the array, in your example it was 1.你不能这样做:
因为
explode
是一个函数,而不是一个数组。当然,它返回一个数组,但在 PHP 中,在将函数设置为数组之前,您不能将其视为数组。操作方法如下:
You can't do this:
Because
explode
is a function, not an array. It returns an array, sure, but in PHP you can't treat the function as an array until it is set into an array.This is how to do it:
PHP 可能有点暗淡。您可能需要在两行中执行此操作:
PHP can be a little dim. You probably need to do this on two lines: