欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2024-04-06 08:29:37
...
例1

复制代码 代码如下:



php函数指定默认值-www.jbxue.com


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



输出结果:
This is test

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

复制代码 代码如下:



php函数参数默认值 - www.jbxue.com


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


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/621702.htmlTechArticle例1 复制代码 代码如下: html head titlephp函数指定默认值-www.jbxue.com/title /head body ?php function printMe($param = NULL) { print $param; } printMe("This is test"...