首页 > 开发 > PHP > 正文

有默认参数的函数

2024-05-04 22:57:38
字体:
来源:转载
供稿:网友
<html>
<head>
<title>有默认参数的函数</title>
</head>
<body>
<font size=5>
<?
function printcolored($text, $color="black")//定义function函数
{
print("<font color=/"$color/">$text</font>");//获取字符串的内容和颜色
}
printcolored("这是黑颜色的字!");//调用function函数
print("<br><br>/n");
printcolored("这是蓝颜色的字!", "blue");//调用function函数
print("<br>/n");
?>
</size>
</body>
</html>



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表