Use Boolean for logical processing.
$edit //A database operation
if ($edit) {
return redirect('back/label/index')->with('message', 'Modification successful');
} else {
return redirect('back/label/index')->with('message', 'Modification failed');
}
PHP exception handling, code source
<?php
//Create a function that can throw an exception
function checkNum($number)
{
if($number>1)
{
throw new Exception("Value must be 1 or below");
}
return true;
}
//Trigger exception in "try" code block
try
{
checkNum(2);
//If the exception is thrown, this text will not be shown
echo 'If you see this, the number is 1 or below';
}
//catch exception
catch(**Exception $e**)
{
echo 'Message: ' .$e->getMessage();
}
?>
I hope someone can explain the difference between the two and their respective benefits, thank you.
ifelse: more intuitive and suitable for processing with simpler logic
Exception: more flexible, suitable for processing with complex logic and multiple levels
I usually use exceptions to do this
The first one is suitable for simple interactions, just tell the user failure/success. The second type is used more often for self-debugging, and you can see more causes of errors.
Because you are encapsulating a function, using exceptions can return more error information more elegantly. Don’t be dirty, be elegant (manual squinting