2022年11月18日(金)

2022年11月18日(金)

<!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″>
</head>
<body>

<!–ここから文章など書き込みます–>
<center>

<?php
//文字列を返す関数を定義
function return_str(){
return’Hello!!’;
}
$str=return_str();
echo$str.”<br/>\n”;
//数値を返す関数を定義
function return_int(){
return 100;
}
$int=return_int();
echo$int.”<br/>\n”;
?>
</center>
<!–ここまで文章など書き込みます–>

</body>
</html>

コメントを残す

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