php指定函数参数默认值示例代码
程序员文章站
2022-03-12 19:15:14
例1
复制代码 代码如下:php函数指定默认值-www.jb51.net
<html>
<head>
<title>php函数指定默认值-www.jb51.net</title>
</head>
<body>
<?php
function printme($param = null)
{
print $param;
}
printme("this is test");
printme();
?>
</body>
</html>
<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>
例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>
上一篇: Laravel框架中VerifyCsrfToken报错问题的解决
下一篇: 设计模式之命令模式