2022/11/18return文値を返す
You are currently viewing a revision titled "2022/11/18return文値を返す", saved on 2022年11月19日 12:21 AM by luyen | |
---|---|
タイトル | 2022/11/18return文値を返す |
コンテンツ | <!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> |
抜粋 | |
脚注 |