php指定函数参数默认值示例代码

前端之家收集整理的这篇文章主要介绍了php指定函数参数默认值示例代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

例1

代码如下:


<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a><a href="https://www.jb51.cc/tag/hanshu/" target="_blank" class="keywords">函数</a>指定默认值-www.jb51.cc


PHP
function printMe($param = NULL)
{
print $param;
}
printMe("This is test");
printMe();
?>

输出结果:
This is test

例2 PHP函数参数默认值的使用范例,PHP函数参数中设置和使用默认值。

代码如下:


<a href="https://www.jb51.cc/tag/PHP/" target="_blank" class="keywords">PHP</a><a href="https://www.jb51.cc/tag/hanshu/" target="_blank" class="keywords">函数</a>参数默认值 - www.jb51.cc


PHP
function textonweb ($content,$fontsize=3){
echo "$content";
}
textonweb ("A
",7);
textonweb ("AA.
");
textonweb ("AAA.
");
textonweb ("AAAA!
");
?>


原文链接:https://www.f2er.com/php/25389.html

猜你在找的PHP相关文章