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>
【kansu.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
//関数を定義
function echo_hello(){
echo “Hello World!!<br/>\n”;
}
//関数を呼び出す
echo_hello();
?>
</center>
<!–ここまで文章など書き込みます–>
</body>
</html>
【hikisu.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
//引数を指定した($aisatsu)関数を定義
function echo_hello($aisatsu){
echo $aisatsu.”<br/>\n”;
}
//関数を呼び出す
echo_hello(‘おはようございます’);
echo_hello(‘good morning’);
echo_hello(‘Guten Morgen’);
echo_hello(‘Buongiorno’);
?>
</center>
<!—ここまで文章など書き込みます–>
</body>
</html>
【return.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
function konnitiha_return(){
$aisatsu=”こんにちは<br/>\n”;
return $aisatsu;
}
echo konnitiha_return(); //これが一回目の表示
$aisatsu=konnitiha_return(); //これが二回目の表示
echo $aisatsu;
?>
</center>
<!–ここまで文章など書き込みます–>
</body>
</html>