Home  >  Q&A  >  body text

课程中的$this是什么意思?

小天小天2883 days ago1149

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 22:46:52

    What does $this mean in the course? -PHP Chinese website Q&A-What does $this mean in the course? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • 迷茫

    迷茫2016-12-17 14:07:29

    $this就是指代这个类。

    可以在这个类中用:$this->functionName(); 来调用类中的方法。

    如果是在类的外面,需要先对类进行实例化,才能调用类中的方法:

    $obj = new blabla(); //实例化blabla这个类,这里的$obj代指实例化后的对象

    $obj->sayhello();  //这里用$obj(也就是blabla类)来调用sayhello方法。


    reply
    1
  • Cancelreply