bit混乱した関数について返ります。
実際の戻り値が必要ない関数がある場合は、0を返すか、falseを返してコードを改善する必要がありますか?php関数return 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
私は今それを得ると思う、確かめなければならなかった。ありがとう。 –