从php中的函数调用中访问数组元素

时间:2010-02-17 15:43:54

标签: 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];

有谁可以解释为什么这段代码不起作用?

0 个答案:

没有答案