一,this
1,要用this,你必有是一個對象的形勢,不然它會報錯的,Fatal error: Using $this when not in object context。
2,this可以呼叫本類別中的方法和屬性,也可以呼叫父類別中的可以調的方法和屬性
二,self
1,self可以存取本類別中的靜態屬性和靜態方法,可以存取父類別中的靜態屬性和靜態方法。
2,用self時,可以不用實例化的
三,parent
1,parent可以存取父類別中的靜態屬性和靜態方法。
2,用parent時,可以不用實例化的
<?php class test{ public $public; private $private; protected $protected; static $instance; static $good = 'tankzhang <br>'; public $tank = 'zhangying <br>'; public function __construct(){ $this->public = 'public <br>'; $this->private = 'private <br>'; $this->protected = 'protected <br>'; } public function tank(){ //私有方法不能继承,换成public,protected if (!isset(self::$instance[get_class()])) { $c = get_class(); self::$instance = new $c; } return self::$instance; } public function pub_function() { echo "you request public function<br>"; echo $this->public; } protected function pro_function(){ echo "you request protected function<br>"; echo $this->protected; } private function pri_function(){ echo "you request private function<br>"; echo $this->private; } static function sta_function(){ echo "you request static function<br>"; } } class test1 extends test{ static $love = "tank <br>"; private $aaaaaaa = "ying <br>"; public function __construct(){ parent::tank(); parent::__construct(); } public function tank(){ echo $this->public; echo $this->protected; echo $this->aaaaaaa; $this->pro_function(); } public function test1_function(){ echo self::$love; echo self::$good; echo parent::$good; echo parent::$tank; //Fatal error: Access to undeclared static property: test::$tank echo self::$tank; //Fatal error: Access to undeclared static property: test::$tank } static function extends_function(){ parent::sta_function(); self::pro_function(); echo "you request extends_private function<br>"; } } error_reporting(E_ALL); $test = new test1(); $test->tank(); //子类和父类有相同名字的属性和方法,实例化子类时,会调用子类中的方法。 test1::test1_function(); test1::extends_function(); //执行一部分后,报Fatal error: Using $this when not in object context in D:\xampp\htdocs\mytest\www4.php on line 32 ?>
1,當我們呼叫$test->tank(); 這個方法時,tank裡面的$this是一個物件,這個物件可以呼叫本類,父類別中的方法和屬性,
2,test1::test1_function(); 當我們用靜態的方法去呼叫非靜態方法時,會顯示警告的,Non-static method test::test1_function() should not be called statically可以看出不,self可以呼叫本類,父類中的靜態屬性,parent可以呼叫父類中的靜態屬性,二者呼叫非靜態屬性會報錯。程式碼中有註解
3,test1::extends_function(); 這一步驟會報錯,報在非物件中使用$this 。為什麼會這樣呢,test1::extends_function();只是呼叫了class中的一個方法,並沒有實例化,所以根本不存在什麼對象,當父類中用到$this時,就會報錯
更多php class中self,parent,this的差異以及實例介紹相關文章請關注PHP中文網!