• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>PHP 函数 实例 - 自学教程(runoops.com)</title>
6
</head>
7
<body>
8
​
9
<?php
10
function writeName($fname,$punctuation)
11
{
12
    echo $fname . " Refsnes" . $punctuation . "<br>";
13
}
14
 
15
echo "My name is ";
16
writeName("Kai Jim",".");
17
echo "My sister's name is ";
18
writeName("Hege","!");
19
echo "My brother's name is ";
20
writeName("Ståle","?");
21
?>
22
​
23
</body>
24
​
25
</html>

© 2023 自学教程   runoops.com All Rights Reserved. 备案号:闽ICP备19010956号-1