有點困惑函數返回。
如果我有一個沒有真正需要返回的函數,我是否必須返回0或返回false以獲得更好的代碼?php函數返回0或根本沒有返回
function example($time)
{
echo $time
//do i need to return 0 here?
};
$foodstore = array('bread','milk','meat','fruits','veges');
$buyer_list = array('bread', 'milk', 'chocolate');
function example($buyer_list , $foodstore)
{
foeach($buyer_list as $item)
{
if(in_array($item, $foodstore)
{
return $item
}
}
//if i have to return only a specific $item, do i need to return 0 if no $item is specified.
}
function example($filename)
{
$file = file_get_contents($filename);
...
file_put_contents($filename, $file);
//do i need to return 0 here?
}
如果呼叫者不使用返回值,你沒有返回任何東西。 – Barmar
如果你沒有返回,它實際上和'return null;'是一樣的。 – Barmar
好吧,我想我現在得到它,不得不確定。謝謝。 –