Example:
function foo()
{
// load an array called $MyArray
return $MyArray;
// or: return $MyArray[]; ERROR!
}
$NewArray[] = foo();
// $NewArray contains nothing,
// so what's the solution ?
// Making $MyArray global solves this,
// but I don't like globals.