php指定函数参数默认值示例代码_php实例
程序员文章站
2022-05-16 23:47:21
...
例1
php函数指定默认值-www.jb51.net
function printMe($param = NULL)
{
print $param;
}
printMe("This is test");
printMe();
?>
php函数参数默认值 - www.jb51.net
function textonweb ($content, $fontsize=3){
echo "$content";
}
textonweb ("A
", 7);
textonweb ("AA.
");
textonweb ("AAA.
");
textonweb ("AAAA!
");
?>
复制代码 代码如下:
function printMe($param = NULL)
{
print $param;
}
printMe("This is test");
printMe();
?>
输出结果:
This is test
例2 php函数参数默认值的使用范例,php函数参数中设置和使用默认值。
复制代码 代码如下:
function textonweb ($content, $fontsize=3){
echo "$content";
}
textonweb ("A
", 7);
textonweb ("AA.
");
textonweb ("AAA.
");
textonweb ("AAAA!
");
?>
下一篇: 深入浅出SQL Server中的死锁