メモとして残します。
#■やり方
throw new \Exception("エラーメッセージ");
try{
//処理
if(!$hoge){
throw new \Exception("エラーだよ");
}
} catch (\Exception $e) {
echo $e->getMessage();// エラーだよ
}
Go to list of users who liked
More than 3 years have passed since last update.
メモとして残します。
#■やり方
throw new \Exception("エラーメッセージ");
try{
//処理
if(!$hoge){
throw new \Exception("エラーだよ");
}
} catch (\Exception $e) {
echo $e->getMessage();// エラーだよ
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked