使用布林進行邏輯處理。
$edit //一段数据库操作
if ($edit) {
return redirect('back/label/index')->with('message', '修改成功');
} else {
return redirect('back/label/index')->with('message', '修改失败');
}
PHP 異常處理 ,代碼來源
<?php
//创建可抛出一个异常的函数
function checkNum($number)
{
if($number>1)
{
throw new Exception("Value must be 1 or below");
}
return true;
}
//在 "try" 代码块中触发异常
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 $e**)
{
echo 'Message: ' .$e->getMessage();
}
?>
希望大神能講下兩種的差別,以及各自的好處,謝謝。