Heim >Backend-Entwicklung >PHP-Tutorial >php函数指定默认值的方法示例

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

WBOY
WBOYOriginal
2016-07-25 08:55:51794Durchsuche
  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. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn