php函数指定默认值方法的小例子
更新时间:2013年12月04日 17:21:54 作者:
本文介绍下,在php编程中,指定函数的默认值的方法,分享二个例子,供大家学习参考下
本节内容:
php函数指定默认值
在php编程中,为自定义函数设定默认值,当用户调用该函数时,如果不给参数指定值,参数会用默认值顶替。
例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>
相关文章
codeigniter框架The URI you submitted has disallowed characters
这篇文章主要介绍了codeigniter框架The URI you submitted has disallowed characters错误解决方法,需要的朋友可以参考下2014-05-05
最新评论