->前面的變量是一個對象:php
$user->friends_count
取對象的friends_count屬性。數組
$t->homeTimeline($p)
調用對象的homeTimeline方法,方法中傳入一個參數$pide
php新手常常碰到的問題,->、=> 和 :: 這三個傢伙是什麼分別都是作什麼的啊!看着就很暈。
不要緊,下面咱們作一下詳細的解釋,若是你有C++,Perl基礎,你會發現這些傢伙和他們裏面的一些符號功能是差很少的。
php‘- >’符號是「插入式解引用操做符」(infix dereference operator)。換句話說,它是調用由引用傳遞參數的子程序的方法(固然,還有其它的做用)。正如咱們上面所提到的,在調用PHP的函數的時候,大部分參數都是經過引用傳遞的。PHP中的‘->’功能就和它們在Perl或C++中同樣。下面是一個簡單的解引用的例子:函數
在PHP的腳本中‘=>’操做符時很常見的。由於php數組函數很豐富,咱們要常常用到數組,由於它操做數據很方便。this
$phparr= new array( in => 'reply,' side => 'left', padx => 2m, pady => 2m, ipadx => 2m, ipady => 1m )
順便說一下,若是你須要用數字「大於等於」的符號,你應該用「>=」而不是「=>」。
在PHP中「::」這個叫範圍解析操做符,又名域運算符。「::」符號能夠認爲是與C語言中的「.」類似的,而它更像C++中(Perl)的::類範圍操做符。
php調用類的內部靜態成員,或者是類之間調用就要用::
下面是一個例子:指針
class A { static $count = 0; static function haha() { // } function diaoyoug() { self::haha(); self::$count; } } a.b.c; /* C語言中的 */ a::b::c(); // C++ 中的函數 $a::b::c; # Perl 5中的標量
this是指向當前對象的指針(姑且用C裏面的指針來看吧)
==>this是指向當前對象實例的指針,不指向任何其餘對象或類。rest
self是指向當前類的指針
==>self是指向類自己,也就是self是不指向任何已經實例化的對象,通常self使用來指向類中的靜態變量。code
parent是指向父類的指針(我 們這裏頻繁使用指針來描述,是由於沒有更好的語言來表達)對象
根據實際的例子來看看繼承
(1) this 1 <?php 2 3 class UserName 4 { 5 //定義成員屬性 6 private $name; 7 8 //定義構造函數 9 function __construct( $name ) 10 { 11 $this->name = $name; //這裏已經使用了this指針 12 } 13 14 //析構函數 15 function __destruct(){} 16 17 //打印用戶名成員函數 18 function printName() 19 { 20 print( $this->name ); //又使用了this指針 21 } 22 } 23 24 //實例化對象 25 $nameObject = new UserName( "heiyeluren" ); 26 27 //執行打印 28 $nameObject->printName(); //輸出: heiyeluren 29 30 //第二次實例化對象 31 $nameObject2 = new UserName( "PHP5" ); 32 33 //執行打印 34 $nameObject2->printName(); //輸出:PHP5 35 ?>
咱們看,上面的類分別在11行和20行使用了this指針,那麼當時this是指向誰呢?
其實this是在實例化的時候來肯定指向誰,好比第一次實例化對象 的時候(25行),那麼當時this就是指向$nameObject對象,那麼執行18行的打印的時候就把print( $this->name )變成了print( $nameObject->name ),那麼固然就輸出了"heiyeluren"。
第二個實例的時候,print( $this- >name )變成了print( $nameObject2->name ),因而就輸出了"PHP5"。
因此說,this就是指向當前對象實例的指針,不指向任何其餘對象或類。
(2)self
首先咱們要明確一點,self是指向類自己,也就是self是不指向任何已經實例化的對象,通常self使用來指向類中的靜態變量。
1 <?php 2 3 class Counter 4 { 5 //定義屬性,包括一個靜態變量 6 private static $firstCount = 0; 7 private $lastCount; 8 9 //構造函數 10 function __construct() 11 { 12 $this->lastCount = ++selft::$firstCount; //使用self來調用靜態變量,使用self調用必須使用::(域運算符號) 13 } 14 15 //打印最次數值 16 function printLastCount() 17 { 18 print( $this->lastCount ); 19 } 20 } 21 22 //實例化對象 23 $countObject = new Counter(); 24 25 $countObject->printLastCount(); //輸出 1 26 27 ?>
我 們這裏只要注意兩個地方,第6行和第12行。
咱們在第二行定義了一個靜態變量$firstCount,而且初始值爲0,那麼在12行的時候調用了這個值, 使用的是self來調用,而且中間使用"::"來鏈接,
就是咱們所謂的域運算符,那麼這時候咱們調用的就是類本身定義的靜態變量$frestCount, 咱們的靜態變量與下面對象的實例無關,它只是跟類有關,
那麼我調用類自己的的,那麼咱們就沒法使用this來引用,可使用 self來引用,
由於self是指向類自己,與任何對象實例無關。換句話說,假如咱們的類裏面靜態的成員,咱們也必須使用self來調用。
(3)parent
咱們知道parent是指向父類的指針,通常咱們使用parent來調用父類的構造函數。
1 <?php 2 3 //基類 4 class Animal 5 { 6 //基類的屬性 7 public $name; //名字 8 9 //基類的構造函數 10 public function __construct( $name ) 11 { 12 $this->name = $name; 13 } 14 } 15 16 //派生類 17 class Person extends Animal //Person類繼承了Animal類 18 { 19 public $personSex; //性別 20 public $personAge; //年齡 21 22 //繼承類的構造函數 23 function __construct( $personSex, $personAge ) 24 { 25 parent::__construct( "heiyeluren" ); //使用parent調用了父類的構造函數 26 $this->personSex = $personSex; 27 $this->personAge = $personAge; 28 } 29 30 function printPerson() 31 { 32 print( $this->name. " is " .$this->personSex. ",this year " .$this->personAge ); 33 } 34 } 35 36 //實例化Person對象 37 $personObject = new Person( "male", "21"); 38 39 //執行打印 40 $personObject->printPerson(); //輸出:heiyeluren is male,this year 21 41 42 ?>
咱們注意這麼幾個細節:成員屬性都是public的,特別是父類的,是爲了供繼承類經過this來訪問。
咱們注意關鍵的地方,第25行: parent::__construct( "heiyeluren" ),這時候咱們就使用parent來調用父類的構造函數進行對父類的初始化,
由於父類的成員都是public的,因而咱們就可以在繼承類中直接使用 this來調用。
總結:this是指向對象實例的一個指針,self是對類自己的一個引用,parent是對父類的引用。