亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在PHP中使用攔截器

發布時間:2021-03-05 16:41:08 來源:億速云 閱讀:196 作者:Leah 欄目:開發技術

如何在PHP中使用攔截器?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

php有什么用

php是一個嵌套的縮寫名稱,是英文超級文本預處理語言,它的語法混合了C、Java、Perl以及php自創新的語法,主要用來做網站開發,許多小型網站都用php開發,因為php是開源的,從而使得php經久不衰。

1、__get($property)

功能:訪問未定義的屬性是被調用

2、__set($property, $value)
功能:給未定義的屬性設置值時被調用

3、__isset($property)
功能:對未定義的屬性調用isset()時被調用

4、__unset($property)
功能:對未定義的屬性調用unset()時被調用

5、__call($method, $arg_array)
功能:調用未定義的方法時被調用

下面將通過一個小程序來說明這些攔截器的用途:

復制代碼 代碼如下:

class intercept_demo{
    private $xingming = "";
    private $age = 10;
  
    // 若訪問一個未定義的屬性,則將調用get{$property}對應的方法
    function __get($property){
        $method = "get{$property}";
        if (method_exists($this, $method)){
            return $this->$method();
        }
    }

    // 若給一個未定義的屬性設置值,則將調用set{$property}對應的方法
    function __set($property, $value){
        $method = "set{$property}";
        if (method_exists($this, $method)){
            return $this->$method($value);
        }  
    }
  
    // 若用戶對未定義的屬性調用isset方法,
    function __isset($property){
        $method = "isset{$property}";
        if (method_exists($this, $method)){
            return $this->$method();
        }
    }
  
    // 若用戶對未定義的屬性調用unset方法,
    // 則認為調用對應的unset{$property}方法
    function __unset($property){
        $method = "unset{$property}";
        if (method_exists($this, $method)){
            return $this->$method();
        }
    }
  
    function __call($method, $arg_array){
        if (substr($method,0,3)=="get"){
            $property = substr($method,3);
            $property = strtolower(substr($property,0,1)).substr($property,1);
            return $this->$property;
        }
    }
  
    function testIsset(){
        return isset($this->Name);
    }
  
    function getName(){
        return $this->xingming;
    }
  
    function setName($value){
        $this->xingming = $value;
    }
  
    function issetName(){
        return !is_null($this->xingming);
    }
  
    function unsetName(){
        $this->xingming = NULL;
    }
}

$intercept = new intercept_demo();
echo "設置屬性Name為Li";
$intercept->Name = "Li";
echo "\$intercept->Name={$intercept->Name}";
echo "isset(Name)={$intercept->testIsset()}";
echo "";
echo "清空屬性Name值";
unset($intercept->Name);
echo "\$intercept->Name={$intercept->Name}";
echo "";
echo "調用未定義的getAge函數";
echo "age={$intercept->getAge()}";

看完上述內容,你們掌握如何在PHP中使用攔截器的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

兴宁市| 精河县| 河池市| 佳木斯市| 巴东县| 洪江市| 阳江市| 遂平县| 棋牌| 凤冈县| 方正县| 隆安县| 吉木萨尔县| 宜宾县| 新建县| 眉山市| 昌都县| 墨玉县| 扎鲁特旗| 万山特区| 弥渡县| 昌平区| 阿拉尔市| 任丘市| 涞源县| 余姚市| 四川省| 潢川县| 南安市| 禄劝| 华亭县| 靖西县| 清远市| 富阳市| 弥渡县| 五大连池市| 朝阳区| 浠水县| 阿克陶县| 沂水县| 丹凤县|