xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>PHP 函数 实例 - 自学教程(runoops.com)</title>
</head>
<body>
function writeName($fname,$punctuation)
{
echo $fname . " Refsnes" . $punctuation . "<br>";
}
echo "My name is ";
writeName("Kai Jim",".");
echo "My sister's name is ";
writeName("Hege","!");
echo "My brother's name is ";
writeName("Ståle","?");
</body>
</html>