溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

發(fā)布時(shí)間:2020-06-03 11:13:26 來(lái)源:網(wǎng)絡(luò) 閱讀:351 作者:shptc 欄目:web開(kāi)發(fā)

一、什么是魔術(shù)方法:

PHP為我們提供了一系列用__開(kāi)頭的函數(shù),這些函數(shù)無(wú)需自己手動(dòng)調(diào)用,會(huì)在合適的時(shí)機(jī)自動(dòng)調(diào)用,這類(lèi)函數(shù)稱(chēng)為魔術(shù)函數(shù)。
例如:

1
function __construct(){} 在new一個(gè)新對(duì)象時(shí)自動(dòng)調(diào)用此函數(shù)

二、PHP中都有那些魔術(shù)方法,以及它們的作用:
1.__construct():構(gòu)造函數(shù),new對(duì)象時(shí)自動(dòng)調(diào)用

eg:

 

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

class Person{        public $name;        public $age;        
        function __construct($name,$age){            $this->name=$name;            $this->age=$age;
        }
}

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

 

在new新的Person對(duì)象時(shí)會(huì)自動(dòng)調(diào)用__construct()函數(shù),將傳入的參數(shù)分別賦給$name,$age。


2.__destruct():析構(gòu)函數(shù),當(dāng)一個(gè)對(duì)象被銷(xiāo)毀前自動(dòng)調(diào)用

 

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

class Person{        public $name;        public $age;        
       function __destruct(){        echo "這個(gè)對(duì)象被銷(xiāo)毀了";
    }
}

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

同上所述,對(duì)象被銷(xiāo)毀時(shí)執(zhí)行此魔術(shù)方法


3.__get():訪(fǎng)問(wèn)類(lèi)中私有屬性時(shí)自動(dòng)調(diào)用,傳遞讀取屬性名,返回$this->屬性名

 

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

class Person{        private $name;        public $age;        
        function __get($name){          return $this->$name;
        }
}

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

 

如上代碼,$name被設(shè)為私有屬性后不能直接通過(guò)$this->name;的方式讀取,因此需要設(shè)置__get()魔術(shù)方法來(lái)讀取。


4.__set():給類(lèi)的私有屬性賦值時(shí)自動(dòng)調(diào)用,傳遞需設(shè)置的屬性名,屬性值

 

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

class Person{        private $name;        public $age;        
        function __set($key,$value){            $this->$key=$value;
        }
}

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

 

同__get()方法,私有屬性不能通過(guò)$this->name="aaa";的方式直接設(shè)置,需要設(shè)置__set()方法,傳入的參數(shù)分別是屬性名和屬性值。


5.__isset():使用isset檢測(cè)對(duì)象私有屬性時(shí)調(diào)用,傳遞檢測(cè)的屬性名,返回isset($this->屬性名)

 

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

class Person{        private $name;        public $age;        
        function __isset($name){        return isset($this->$name);
    }
}

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

 

使用isset檢測(cè)對(duì)象私有屬性時(shí)調(diào)用,其他同上。


6.__unset():使用unset()函數(shù)刪除對(duì)象私有屬性時(shí)調(diào)用,傳遞刪除的屬性名,方法中執(zhí)行unset($this->屬性名)

 

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

class Person{        private $name;        public $age;        
        function __unset($name){
            unset($this->$name);
        } }

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

同上,在用unset()函數(shù)刪除私有屬性時(shí)調(diào)用。


7.__toString():使用echo打印對(duì)象時(shí)調(diào)用,返回打印對(duì)象時(shí)想要顯示的內(nèi)容,返回必須是字符串

 

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

class Person{        public $name;        public $age;        
       function __toString(){            $str = <<<str
            您要打印的內(nèi)容是:<br>
            \$name=>{$this->name};<br>
            \$age=>{$this->age};<br>str;            return $str;
        }
}

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

 

使用echo打印對(duì)象時(shí)調(diào)用,返回打印對(duì)象時(shí)想要顯示的內(nèi)容


8.__call():調(diào)用一個(gè)類(lèi)中未定義的或未公開(kāi)的方法時(shí)自動(dòng)調(diào)用,傳遞被調(diào)用的函數(shù)名及參數(shù)列表

 

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

   __call(, "您調(diào)用的函數(shù){},參數(shù)列表"( "不存在/未公開(kāi)"

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

 

如代碼所示,調(diào)用不存在的say(1,2,3);時(shí),會(huì)打印

您調(diào)用的函數(shù)way,參數(shù)列表Array ( [0] => 123 ) 不存在


9.__clone():當(dāng)使用clone關(guān)鍵字,克隆一個(gè)對(duì)象時(shí)自動(dòng)調(diào)用,作用是為新克隆的對(duì)象初始化賦值

 

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

class Person{        public $name;        public $age;        
       function __clone(){        $this->name="lisi";
        }
}    
$zhangsan=new Person("zhangsan",24);$lisi=clone $zhangsan;echo $lisi->name;

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

 

打印出的結(jié)果是"lisi",而不是"zhangsan"。

 

 

10.__sleep():對(duì)象序列化時(shí)自動(dòng)調(diào)用,返回一個(gè)數(shù)組,數(shù)組中的值就是可以序列化的屬性

 

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

class Person{        public $name;        public $age;        
      function __sleep(){        return array("name","age");
    }
}

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

 

如上述代碼,在用serialize()序列化對(duì)象時(shí)只有"name","age"屬性會(huì)被序列化。


11.__wakeup():對(duì)象反序列化時(shí)自動(dòng)調(diào)用,為反序列化新產(chǎn)生的對(duì)象進(jìn)行初始化賦值

 

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

class Person{        public $name;        public $age;        
      function __wakeup(){        $this -> name = "lisi";
    }
}

PHP中的面向?qū)ο驩OP中的魔術(shù)方法

 

將對(duì)象序列化后再反序列化,同時(shí)給對(duì)象的name屬性賦初值為"lisi"。


12.__autolode():需要在類(lèi)外部聲明函數(shù),當(dāng)實(shí)例化一個(gè)未聲明的類(lèi)時(shí)自動(dòng)調(diào)用,傳遞實(shí)例化的類(lèi)名,可以使用類(lèi)名自動(dòng)加載對(duì)應(yīng)的類(lèi)文件。

 

function __autoload($className){    include "class/".strtolower($className).".class.php";
}    
$zhangsan=new Person();$zhangsan->say();

如上述代碼,Person類(lèi)不存在時(shí)調(diào)用__autolode()方法,載入寫(xiě)在文件外的類(lèi),"class/".strtolower($className).".class.php";就是類(lèi)文件的相對(duì)路徑,$className就是

不在本文件中的類(lèi)的類(lèi)名,因此在創(chuàng)建外部類(lèi)文件時(shí)命名方式必須是小寫(xiě)的類(lèi)名.class.php。__autolode()方法也是惟一一個(gè)不用寫(xiě)在類(lèi)中的魔術(shù)方法。

以上就是PHP中的魔術(shù)方法,合理利用這些方法可以輕松實(shí)現(xiàn)對(duì)象的各種操作。


向AI問(wèn)一下細(xì)節(jié)
AI