-
- php函数指定默认值-bbs.it-home.org
- function printMe($param = NULL)
- {
- print $param;
- }
- printMe("This is test");
- printMe();
- ?>
-
复制代码
输出结果:
This is test
例2,php函数参数默认值的使用范例,php函数参数中设置和使用默认值。
代码:
-
-
- php函数参数默认值 - bbs.it-home.org
-
-
- function textonweb ($content, $fontsize=3){
- echo "$content";
- }
- textonweb ("A
", 7);
- textonweb ("AA.
");
- textonweb ("AAA.
");
- textonweb ("AAAA!
");
- ?>
-
-
复制代码
|