這篇文章主要介紹了關於PHP中的常見魔術方法功能作用及用法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
概述
在物件導向編程中,PHP提供了一系列的魔術方法,這些魔術方法為編程提供了很多便利。PHP中的魔術方法通常以__(兩個底線)開始,並且不需要顯示的調用而是由某種特定的條件出發。
開始之前
在總結PHP的魔術方法之前先來定義兩個類,以便後邊樣本使用:
<?phpclass Device{ public $name,$battery,$data = [],$connection; protected function connect(){ $this->connection = 'resource'; echo $this->name.'connected'.PHP_EOL; } protected function disconnect(){ $this->connection = null; echo $this->name.'disconnected'.PHP_EOL; }}
Device類有四個成員屬性和兩個成員方法。
<?php class Battery{ private $charge = 0; public function setCharge($charge){ $charge = (int)$charge; if($charge < 0){ $charge = 0; }else if($charge > 100){ $charge = 100; } $this->charge = $charge; }}
Battery類有一個成員屬性和一個成員方法。
建構函式和解構函式
建構函式和解構函式分別在對象建立和銷毀時被調用。對象被“銷毀”是指不存在任何對該對象的引用,比如引用該對象的變數被刪除(unset)、重新賦值或指令碼執行結束,都會調用解構函式。
__construct()
__construct()建構函式是目前為止最經常使用的函數。在建立對象時,可以在建構函式中做一些初始化工作。可以為建構函式定義任意多個參數,只要在執行個體化時傳入對應個數的參數即可。建構函式中出現的任何異常都會阻止對象的建立。
<?phpclass Device{ public $name,$battery,$data = [],$connection; public function __construct(Battery $battery,$name){ $this->battery = $battery; $this->name = $name; $this->connect(); } protected function connect(){ $this->connection = 'resource'; echo $this->name.'connected'.PHP_EOL; } protected function disconnect(){ $this->connection = null; echo $this->name.'disconnected'.PHP_EOL; }}
上面的範例程式碼中,Device類的建構函式為成員屬性賦值並且調用了connect()方法。
將建構函式聲明為私人方法,可以防止在類外部建立對象,這在單利模式中經常使用。
__desctruct()
解構函式通常在對象被銷毀時調用,解構函式不接收任何參數。經常在解構函式中執行一些清理工作,比如關閉資料庫連接等。
__get()
魔術方法__get()在我們嘗試訪問一個不存在的屬性時會被調用。它接收一個參數,該參數表示訪問屬性的名字,並且將該屬性的值返回。在上面的Device類裡,有一個data屬性,該屬性就在這裡就起了作用,如下面得代碼:
<?php class Device{ public $name,$battery,$data = [],$connection; public function __construct(Battery $battery,$name){ $this->battery = $battery; $this->name = $name; $this->connect(); } protected function connect(){ $this->connection = 'resource'; echo $this->name.'connected'.PHP_EOL; } protected function disconnect(){ $this->connection = null; echo $this->name.'disconnected'.PHP_EOL; }}$battery = new Battery();$device = new Device($battery,'mac');echo $device->aaa; //Notice: Undefined property: Device::$aaa
<?phpheader("Content-type: text/html; charset=utf-8");class Device{ public $name,$battery,$data = [],$connection; public function __construct(Battery $battery,$name){ $this->battery = $battery; $this->name = $name; $this->connect(); } public function __get($name){ if(array_key_exists($name,$this->data)){ return $this->data[$name]; } return '屬性不存在'; } protected function connect(){ $this->connection = 'resource'; echo $this->name.'connected'.PHP_EOL; } protected function disconnect(){ $this->connection = null; echo $this->name.'disconnected'.PHP_EOL; }}$battery = new Battery();$device = new Device($battery,'mac');echo $device->aaa; //macconnected 屬性不存在
該魔術方法最常用的地方就是通過建立一個“唯讀”的屬性來擴充存取控制。在上面的Battery類中,有一個私人屬性$charge,我們可以通過__get()魔術方法將該屬性擴充為在類外部可讀但不能修改。代碼如下:
<?php class Battery { private $charge = 0; public function __get($name) { if(isset($this->$name)) { return $this->$name; } return null; }}
__set()
__set()魔術方法在我們嘗試修改一個不可訪問的屬性時會被調用,它接收兩個參數,一個表示屬性的名字,一個表示屬性的值。範例程式碼如下:
<?phpheader("Content-type: text/html; charset=utf-8");class Device{ public $name,$battery,$data = [],$connection; public function __construct(Battery $battery,$name){ $this->battery = $battery; $this->name = $name; $this->connect(); } public function __get($name){ if(array_key_exists($name,$this->data)){ return $this->data[$name]; } return '屬性不存在'; } public function __set($name,$value){ $this->data[$name] = $value; } protected function connect(){ $this->connection = 'resource'; echo $this->name.'connected'.PHP_EOL; } protected function disconnect(){ $this->connection = null; echo $this->name.'disconnected'.PHP_EOL; }}$battery = new Battery();$device = new Device($battery,'mac');$device->aaa = '哈哈';echo $device->aaa; //macconnected 哈哈
__isset()
__isset()魔術方法在對一個不可訪問的屬性調用isset()方法時會被調用,它接收一個參數,表示屬性的名字。它應該返回一個布爾值,用來表示該屬性是否存在。代碼如下:
<?phpclass Device{ private function __isset($name){ return array_key_exists($name,$this->data); }
如果對象裡面成員是公有的,可以直接使用 isset() 函數。如果是私人的成員屬性,那就需要在類裡面加上一個 __isset() 方法
__unset()
__unset()魔術方法在調用unset()函數銷毀一個不能訪問的屬性時會被調用,它接收一個參數,表述屬性的名字。
以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!