php指定函数参数默认值示例代码_PHP教程
程序员文章站
2024-04-06 08:29:37
...
例1
php函数指定默认值-www.jbxue.com
function printMe($param = NULL)
{
print $param;
}
printMe("This is test");
printMe();
?>
php函数参数默认值 - www.jbxue.com
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!
");
?>
推荐阅读
-
php指定函数参数默认值示例代码_PHP教程
-
php-Arrays函数-array_pad-用值将数组填补到指定长度_PHP教程
-
PHP register_shutdown_function()函数的使用示例,shutdown函数_PHP教程
-
php date()函数各参数详解_PHP教程
-
PHP文件去掉PHP注释空格的函数分析(PHP代码压缩)_PHP教程
-
PHP 杂谈《重构-改善既有代码的设计》之一 重新组织你的函数_PHP教程
-
在字符串指定位置插入一段字符串的php代码_PHP教程
-
PHP 外部获取函数参数个数_PHP教程
-
ThinkPHP实现事务回滚示例代码_PHP教程
-
下拉列表多级联动dropDownList示例代码_PHP教程