我想要做
<?php
$str = "I want to access 2nd or 3rd index in one line";
echo explode(" ",$str)[2];
?>
我们可以使用轻松访问第一个索引
stristr($str," ",true); //For php version >= 5.3
或者
$foo = array_shift(explode(':', $foo));
或者
list($str) = explode(" ", $str);
但
如何在一行中访问特定索引 [1]、[2] 或 [3]?