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

php函数指定默认值的方法示例

程序员文章站 2022-06-05 21:55:51
...
  1. php函数指定默认值-bbs.it-home.org
  2. function printMe($param = NULL)
  3. {
  4. print $param;
  5. }
  6. printMe("This is test");
  7. printMe();
  8. ?>
复制代码

输出结果: This is test

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

  1. php函数参数默认值 - bbs.it-home.org
  2. function textonweb ($content, $fontsize=3){
  3. echo "$content";
  4. }
  5. textonweb ("A
    ", 7);
  6. textonweb ("AA.
    ");
  7. textonweb ("AAA.
    ");
  8. textonweb ("AAAA!
    ");
  9. ?>
复制代码