recherche

Maison  >  Questions et réponses  >  le corps du texte

php 引用一个函数?

class c{
  function f1($parameter){

  }

  function f2(){
    $f = #如何获得f1的引用?
    $f($input);#为了这个
  }
}
PHP中文网PHP中文网2826 Il y a quelques jours167

répondre à tous(2)je répondrai

  • 迷茫

    迷茫2017-04-10 17:07:29

    $f=$this->f1();

    少打了括号

    <?php 
    class c{
      function f1(){
            echo 'hello';
      }
    
      function f2(){
        $f = $this->f1();
        $f;
      }
    }
    
    $i =new c;
    
    $i->f2();
    

    répondre
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-10 17:07:29

    class c{
      function f1($parameter){
    
      }
    
      function f2(){
        $this->$f1($input);
      }
    }

    répondre
    0
  • Annulerrépondre