2023421

2023421

<!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, minimum-scale=1.0″>
<style>
.center {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
</style>
</head>
<body>
<!–ここから文章など書き込みます–>
<div class=”center”>
<?php
try {
$A = 6;
$B = 7;
if ($A == 6) {
throw new Exception();
}
if ($B == 8) {
throw new Exception();
}
echo ‘エラーではありません’;
} catch (Exception $e) {
echo ‘エラーですね’;
}
?>
</div>
<!–ここから文章など書き込みます–>
</body>
</html>

コメントを残す

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