php-ghost这是什么鬼? <?php function getArray() { return array(1, 2, 3); } // 这样是ok的 $tmp = getArray(); $secondElement = $tmp[1]; // 这样会报错(PHP <5.4) // PHP Parse error: syntax error, unexpected '[' ... $secondElement = getArray()[1]; ?>