#$thisとは。
簡潔にいう。
$thisを使っているクラスのことだ。
具体的にいうと、コントローラーを見てみよう。
sample_controller.php
class NewsController extends Controller {
public function add_index()
{
$this->なんやかんや;
}
}
注目するのは、最初のここ!
class NewsController extends Controller {
これは、
Controllerクラスを継承して、NewsControllerクラスを作ります。中身は{}の中!!
という意味です。
結論!!
$thisとは、ここでいうNewsControllerクラスのオブジェクトのこと!!