del*_*992 1 php arguments function
这两个代码摘录分别在PHP中有什么区别?:
function eat_apple($apple)
{
    return true;
}
和:
function eat_apple()
{
    $apple = func_get_arg(0);
    return true;
}
或者有区别吗?如果没有,func_get_arg()有什么意义?当然它有一些我不知道的目的吗?