<html>
<body>
<?php
function greeting() {
print("Hello, world<br>\n");
print("Good morning<br>\n");
print("Good bye<br>\n");
}
greeting();
greeting();
function disp_count($count) {
print($count . " time<br>\n");
}
disp_count("1st");
disp_count("2nd");
disp_count("3rd");
?>
</body>
</html>
出力結果
<html> <body> Hello, world<br> Good morning<br> Good bye<br> Hello, world<br> Good morning<br> Good bye<br> 1st time<br> 2nd time<br> 3rd time<br> </body> </html>
0 件のコメント:
コメントを投稿