例1
复制代码 代码如下:
<html>
<head>
<title>php函数指定默认值-www.jb51.net</title>
</head>
<body>
<?php
function printMe($param = NULL)
{
print $param;
}
printMe("This is test");
printMe();
?>
</body>
</html>
输出结果:
This is test
例2 php函数参数默认值的使用范例,php函数参数中设置和使用默认值。
复制代码 代码如下:
<html>
<head>
<title>php函数参数默认值 - www.jb51.net</title>
</head>
<body>
<?php
function textonweb ($content, $fontsize=3){
echo "<font SIZE=$fontsize>$content</font>";
}
textonweb ("A <br />", 7);
textonweb ("AA.<br />");
textonweb ("AAA. <br />");
textonweb ("AAAA! <br />");
?>
</body>
</html>
标签:
php,函数参数默认值
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“php指定函数参数默认值示例代码”评论...