2022年11月18日(金)
You are currently viewing a revision titled "2022年11月18日(金)", saved on 2022年11月19日 12:31 AM by フアンテイタンタム | |
---|---|
タイトル | 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> |
抜粋 | |
脚注 |