Heim  >  Fragen und Antworten  >  Hauptteil

PHP函数如何只传指定的参数

可以只传$a和$c吗

<?php $a = new c;class c{    
function __construct()
{       
 $this->f(1,,1);//会报错
    }    function f($a, $b = 'hello', $c)
    {        if($a) echo $a;  
          if($b) echo $b;      
            if($c) echo $c;
    }

}
?>


高洛峰高洛峰2924 Tage vor820

Antworte allen(1)Ich werde antworten

  • 三叔

    三叔2016-11-05 12:23:01

    把$b放在最后一个参数

    Antwort
    0
  • StornierenAntwort