您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)如何在php類中使用攔截器,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
php是一個(gè)嵌套的縮寫名稱,是英文超級文本預(yù)處理語言,它的語法混合了C、Java、Perl以及php自創(chuàng)新的語法,主要用來做網(wǎng)站開發(fā),許多小型網(wǎng)站都用php開發(fā),因?yàn)閜hp是開源的,從而使得php經(jīng)久不衰。
1、__get( $property ) 訪問未定義的屬性時(shí)調(diào)用
復(fù)制代碼 代碼如下:
class lanjie
{
function __get($name)
{
echo $name." property not found! ";
}
}
$ob = new lanjie();
echo $ob->g;
當(dāng)我們調(diào)用對象$ob未定義的屬性g時(shí),調(diào)用攔截器__get()方法,輸出"g property not found!”;
2、__set( $property , $value ) 給未定義的屬性調(diào)用時(shí)賦值
復(fù)制代碼 代碼如下:
class person
{
private $_age;
private $_name;
function __set($name, $value)
{
$method = "set". ucfirst($name);
echo $method;
if(method_exists($this, $method) )
{
return $this->$method( $value );
}
}
function setName( $name )
{
$this->_name = $name;
if( !is_null($this->_name) )
{
$this->_name = strtoupper($this->_name);
}
}
function setAge( $age )
{
return $this->_age = (int)$age;
}
}
$p = new person();
$p->name = 'bob';
print_r( array( $p ) );
這里我們可以很清楚的看到 , 當(dāng)給未定義的'name'賦值時(shí) , 會(huì)調(diào)用"__set()”
其他的還有 __call(), __isset() , __unset();
這里最有用和最常用的的是__call() , 當(dāng)調(diào)用一個(gè)為存在的方法時(shí)被調(diào)用; __isset()是在對一個(gè)為定義的屬性使用isset()函數(shù)時(shí)被調(diào)用, __unset是在對未定義的數(shù)以使用unset時(shí)被調(diào)用
關(guān)于如何在php類中使用攔截器就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。