当前位置:Gxlcms > PHP教程 > php函数指定默认值的方法示例

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

时间:2021-07-01 10:21:17 帮助过:1人阅读

  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. ?>

人气教程排行