この例では、
public function something($input)
{
if(something) //true case
return "something";
if(another something) //true case
return "another something";
}
$this->something('something');
最初のケースreturn;
の後に関数が実行され続けないようにするために使用する必要がありますか? TRUE
お気に入り;
if(something) { //true case
return "something";
return; //stop the execution
}
それは必要ですか、それとも単一のリターンはすでに関数の実行を停止していますか?