2022/11/4
【外部ファイル】
<?php
print(“あなたのお名前\n”);
function run(){
print(“なんてーの\n”);
}
?>
【読み込みファイル】
<!DOCTYPE html>
<html dir=”ltr”lang=”ja”>
<head>
<meta charaset=”UTF-8″>
<meta name=”viewport”content=”width=device-width,user-scalabe=yes,maximum-scale=1.0,minimum-scale=1.0″>
</head>
<body>
<!–ここに文章などを書き込みます–>
<center>
<?php
require(“gaibu.php”);
run();
?>
</center>
<!–ここまで文章など書き込みます–>
</body>
</html>
【外部ファイル2】
<?php
print(“あなたのお名前”);
function run(){
print(“なんてーの\n”);
}
?>
【読み込みファイル2】
<!DOCTYPE html>
<html dir=”ltr”lang=”ja”>
<head>
<meta charaset=”UTF-8″>
<meta name=”viewport”content=”width=device-width,user-scalabe=yes,maximum-scale=1.0,minimum-scale=1.0″>
</head>
<body>
<!–ここに文章などを書き込みます–>
<center>
<?php
require(“gaibu2.php”);
run();
?>
</center>
<!–ここまで文章など書き込みます–>
</body>
</html>
【Exception,throw,catch】
<!DOCTYPE html>
<html dir=”ltr”lang=”ja”>
<head>
<meta charaset=”UTF-8″>
<meta name=”viewport”content=”width=device-width,user-scalabe=yes,maximum-scale=1.0,minimum-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,die】
<!DOCTYPE html>
<html dir=”ltr”lang=”ja”>
<head>
<meta charaset=”UTF-8″>
<meta name=”viewport”content=”width=device-width,user-scalabe=yes,maximum-scale=1.0,minimum-scale=1.0″>
</head>
<body>
<!–ここに文章などを書き込みます–>
<center>
<?php
$test=5;
if($test==10){
echo”OK”;
}else{
echo”NO”;
}
exit;
?>
</center>
<!–ここまで文章など書き込みます–>
</body>
</html>
【関数】
<!DOCTYPE html>
<html dir=”ltr”lang=”ja”>
<head>
<meta charaset=”UTF-8″>
<meta name=”viewport”content=”width=device-width,user-scalabe=yes,maximum-scale=1.0,minimum-scale=1.0″>
</head>
<body>
<!–ここに文章などを書き込みます–>
<center>
<?php
//関数を定義
function echo_hello(){
echo”Hello World!!<br/>\n”;
}
//関数を呼び出す
echo_hello();
?>
</center>
<!–ここまで文章など書き込みます–>
</body>
</html>
【引数】
<!DOCTYPE html>
<html dir=”ltr”lang=”ja”>
<head>
<meta charaset=”UTF-8″>
<meta name=”viewport”content=”width=device-width,user-scalabe=yes,maximum-scale=1.0,minimum-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>
【感想】
なんとなく理解はできたので、自分で数字等を変えて練習しておこうと思った。