当前位置:首页 > PHP教程 > php函数 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2020-07-13 16:03:29 浏览: 评论:0 

在php编程中,为自定义函数设定默认值,当用户调用该函数时,如果不给参数指定值,参数会用默认值顶替,下面看例子。

例1,代码如下:

  1. <html> 
  2. <head> 
  3. <title>php函数指定默认值-www.phpfensi.com</title> 
  4. </head> 
  5. <body> 
  6. <?php 
  7. function printMe($param = NULL
  8.    print $param; 
  9. printMe("This is test"); 
  10. printMe(); 
  11. ?> 
  12.  
  13. </body> 
  14. </html> 

输出结果:

This is test

例2 php函数参数默认值的使用范例,php函数参数中设置和使用默认值,代码如下:

  1. <html> 
  2.   <head> 
  3.   <title>php函数参数默认值 - www.phpfensi.com</title> 
  4.   </head> 
  5.   <body> 
  6.   <?php 
  7.   function textonweb ($content, $fontsize=3){ 
  8.      echo "<font SIZE=$fontsize>$content</font>"; 
  9.   } 
  10.   textonweb ("A <br />", 7); 
  11.   textonweb ("AA.<br />"); 
  12.   textonweb ("AAA. <br />"); 
  13.   textonweb ("AAAA! <br />"); 
  14.   ?> 
  15.   </body> 
  16.   </html> 

Tags: php指定函数参数

分享到: