thinkphp中的$this是什麼意思
thinkphp中的$this是什麼意思
$this是目前物件引用,是php的,跟thinkphp沒關係
表示當前對象,在不同地方意義不同,得看具體代碼。另外樓上+1
$this 一定是在class 類別的內部才會出現的一個PHP的關鍵字,表示當前對象,一般是當前類別呼叫自己的屬性和方法。
<code><?php class demo { public $name; public function __construct($name='') { $this->name = $name; //这里的$this 就是当前对象,就是本身的属性 赋值 } } </code>
當前物件引用
這個物件, $a = new Name(); $a->fun this就是$a 這個物件
$this 是這本對象,