擬似変数(this)
1
<?php class Test{ public $test_value = 1; public function test_method(){ return $this->test_value; } } $test_class = new Test(); echo $test_class->test_method();
メソッド内で同一インスタンスのプロパティを使用するときは
と記入します。
$thisは自分自身(インスタンス)を指します。
$this->プロパティ
と記入します。
$thisは自分自身(インスタンス)を指します。