标签: arrays
$arr = array('a','b','c'); $v = $arr[1]; //This will return 'b'
但我想定义数组,只在一行中获取值,例如:
$v = array('a','b','c')[1];
但上面的代码返回错误。我怎么能这样做?