标签: php
可能重复: How to avoid temporary variables in PHP when using an array returned from a function
function array_test() { return array(0, 1, 2); } echo array_test()[0];
有谁可以解释为什么这段代码不起作用?