私はこの次のコードを持っています。最初のIFが真であれば機能を停止する必要があります。残りのコードは実行しません。PHP関数を停止する方法
お手伝いできますか? ありがとうございました! :)
function valideInfosReclamation($date,$idSite,$idNature,$idActivite){
if($date==""){
ajouterErreur("Le champ date ne doit pas être vide");
}
else{
if(!estDatevalide($date)){
ajouterErreur("Date invalide");
}
}
if($idSite || $idNature || $idActivite == ""){
ajouterErreur("Certains champs sont vides et doivent êtres remplis");
}
}
[返品](http://php.net/return)。 –
[phpの関数の終了と偽の間の差の可能な複製](http://stackoverflow.com/questions/15633028/php-difference-between-function-exit-and-return-false) –
可能な複製[PHP - 呼び出し関数の実行を停止する](http://stackoverflow.com/questions/19368937/php-stopping-the-execution-of-the-calling-function) –