VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php函数指定默认值方法的小例子

php函数指定默认值

在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. </body> 
  13. </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> 
  17.  

出处:http://www.phpfensi.com/php/20200715/13113.html


相关教程