2023/4/21

2023/4/21

You are currently viewing a revision titled "2023/4/21", saved on 2023年4月21日 8:37 PM by Makoto
タイトル
2023/4/21
コンテンツ
【exception.php】 <!DOCTYPE html> <html dir="ltr" lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=yes,maximum-scale=1.0"> </head> <body> <!--ここから文章など書き込みます--> <center> <?php try{ $A=6; $B=7; if($A==6){ throw new Exception(); } if($B==8){ throw new Exception(); } }catch (Exception $e){ echo 'エラーですね'; } ?> </center> <!--ここまで文章など書き込みます--> </body> </html>   【exit.php】 <!DOCTYPE html> <html dir="ltr" lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=yes,maximum-scale=1.0"> </head> <body> <!--ここから文章など書き込みます--> <center> <?php $test=5; if($test==10){ echo "OK"; }else{ echo "no"; } exit; ?> </center> <!--ここまで文章など書き込みます--> </body> </html>
抜粋
脚注


Old New Date Created Author Actions
2023年4月21日 12:03 PM Makoto
2023年4月21日 11:45 AM Makoto
2023年4月21日 11:37 AM Makoto

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です