php中呼叫類的屬性和函式的方法->_=>_::_$this->區別

科技小先鋒發表於2017-11-08

在php中有同學經常搞不明白->,=>,::,$this->的作用,下面通過例子講解下。

 

一、->用來引用一個類的屬性(變數)、方法(函式)

 

可以把->理解成呼叫的意思

如:

<?php

Class a{

Var $id;

Function add(){

$this->id=”test”;

echo “abc”;

}

}

$b = new a;

$b->add();  //呼叫類a中的add()方法, 輸出為abc

Echo $b->id; //呼叫類a中的屬性id,輸出為test

?>

二、=>是用來定義陣列用的

 

=>用來定義陣列的,比如:

$arr1 = array(0=>`php`,1=>`is`,the=>`the`);

Echo $arra[0],$arr1[1],$arr[‘the’];   //對應輸出設定的值

 

三、::用來直接呼叫類中的屬性或方法

 

正常的情況我們用例項化方法來呼叫類中的屬性或方法,但使用::可以不需要例項化物件,直接呼叫即可。比如:

 

Class b{

Var $name=”test”;

 

Function Getname(){

Echo “test is good”

}

}

直接呼叫:

Echo b::Getname()//輸出為test is good

 

 

 

 

四、$this->表示例項化後的具體物件

 

我們一般在一個類的內部使用本類的屬性或方法時,就使用$this->

如:

Class a{

Var $name;

 

Function Getname(){

Echo $this->name;

}

}

$name1 = new a;

$name1->name = “賦值給name”

$name1->Getname(); //呼叫函式,並且輸出為 “賦值給name

 

本文轉自niedongri 51CTO部落格,原文連結:http://blog.51cto.com/laomomo/2045031,如需轉載請自行聯絡原作者


相關文章