PHP中把以兩個下劃線__開頭的方法稱為魔術(shù)方法(Magic methods),這些方法在PHP中充當(dāng)了舉足輕重的作用。
其中__set(),設(shè)置一個類的成員變量時調(diào)用
__set() 的作用:
__set( $property, $value )` 方法用來設(shè)置私有屬性, 給一個未定義的屬性賦值時,此方法會被觸發(fā),傳遞的參數(shù)是被設(shè)置的屬性名和值。
請看下面的演示代碼:
?php
class Person
{
private $name;
private $age;
public function __construct($name="", $age=25)
{
$this->name = $name;
$this->age = $age;
}
/**
* 聲明魔術(shù)方法需要兩個參數(shù),真接為私有屬性賦值時自動調(diào)用,并可以屏蔽一些非法賦值
* @param $property
* @param $value
*/
public function __set($property, $value) {
if ($property=="age")
{
if ($value > 150 || $value 0) {
return;
}
}
$this->$property = $value;
}
/**
* 在類中聲明說話的方法,將所有的私有屬性說出
*/
public function say(){
echo "我叫".$this->name.",今年".$this->age."歲了";
}
}
$Person=new Person("小明", 25); //注意,初始值將被下面所改變
//自動調(diào)用了__set()函數(shù),將屬性名name傳給第一個參數(shù),將屬性值”李四”傳給第二個參數(shù)
$Person->name = "小紅"; //賦值成功。如果沒有__set(),則出錯。
//自動調(diào)用了__set()函數(shù),將屬性名age傳給第一個參數(shù),將屬性值26傳給第二個參數(shù)
$Person->age = 16; //賦值成功
$Person->age = 160; //160是一個非法值,賦值失效
$Person->say(); //輸出:我叫小紅,今年16歲了
運行結(jié)果:
知識點擴展
PHP5中__get()、__set()方法
__get()方法:這個方法用來獲取私有成員屬性值的,有一個參數(shù),參數(shù)傳入你要獲取的成員屬性的名稱,返回獲取的屬性值。如果成員屬性不封裝成私有的,對象本身就不會去自動調(diào)用這個方法。
__set()方法:這個方法用來為私有成員屬性設(shè)置值的,有兩個參數(shù),第一個參數(shù)為你要為設(shè)置值的屬性名,第二個參數(shù)是要給屬性設(shè)置的值,沒有返回值。(key=>value)
/*
*person.class.php
*/
?php
class Person{
private $name;
public $age;
public $sex;
public $addrs;
public $time;
function __construct($name,$age,$sex,$addrs){
//parent::__construct();
$this->name = $name;
$this->age = $age;
$this->sex = $sex;
$this->addrs = $addrs;
}
private function __get($pri_name){
if(isset($this->$pri_name)){
echo "pri_name:".$this->$pri_name."br>";
return $this->$pri_name;
}else{
echo "不存在".$pri_name;
return null;
}
}
private function __set($pri_name,$value){
echo $pri_name."的值為:".$value."br>";
$this->$pri_name = $value;
}
function user($time){
$this->time = $time;
echo "我叫:".$this->name.",今年:".$this->age."歲,性別:".$this->sex.",地址是:".$this->addrs.",--".$this->time."br>";
}
function __destruct(){
echo "再見:".$this->name."br>";
}
}
?>
/*
*person.php
*/
?php
require "person.class.php";
$Person = new Person("xy404","22","男","湖北");
$Person->user(404);
$Person->name = "aib"; //在person.class.php中的person類中name這個屬性private的。所以它在賦值的時候自動調(diào)用了__set()這個方法.如果沒有__set()方法就會報錯。
echo $Person->name."br>";
?>
一般在調(diào)用類的屬性和方法的時候會使用:$this->name 或 $this->name()來完成。下面通過一個簡單的例子來說明一下$this->$name的這種用法。
?php
class Test{
public $name = "abc";
public $abc = "test";
public function Test(){
$name1 = "name";
echo $this->name; // 輸出 abc
echo $this->$name1; // 輸出 abc,因為 $name1 的值是name,相當(dāng)與這里替換成 echo $this->name;
$name2 = $this->$name1; // $name2 的值是 abc
echo $this->$name2; // 輸出 test,同上,相當(dāng)與是 echo $this->abc;
}
}
?>
您可能感興趣的文章:- PHP中檢查isset()和!empty()函數(shù)的必要性
- PHP isset()與empty()的使用區(qū)別詳解
- php reset() 函數(shù)指針指向數(shù)組中的第一個元素并輸出實例代碼
- Python 檢查數(shù)組元素是否存在類似PHP isset()方法
- PHP中isset()和unset()函數(shù)的用法小結(jié)
- PHP表單驗證的3個函數(shù)ISSET()、empty()、is_numeric()的使用方法
- PHP中刪除變量時unset()和null的區(qū)別分析