function returnsAnArray () { return array ('test'); } echo returnsAnArray ()[0];
在PHP中生成语法错误.在不将结果赋给临时变量的情况下直接从返回的数组中获取元素的最有效方法是什么?
php
php ×1