FAD
Function Array Dereferencing
<?php
function
fruits
() {
return [
'apple'
,
'banana'
,
'orange'
];
}
echo
fruits
()[
0
];
// Outputs: apple