84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
class DBmodel{ private $name; publice function delete($name){ $this->name = $name; } }
裡面的$this代表的是整個類別DBmodel,還是類別方法delete ?
$this代表的是對象,而$this所在環境為類別內部的方法內部,所以$this物件是在類別內部存取
//如果里面有构造方法: function __construct(){ $this->name = $name; }
裡面的$this代表的就是建構方法本身嗎?
$this代表的是對象,而$this所在環境為類別內部的方法內部,所以$this物件是在類別內部存取
裡面的$this代表的就是建構方法本身嗎?