您好,登錄后才能下訂單哦!
__set()和 __get()兩個方法用來完成對所有私有屬性都能獲取和賦值的操作,而__isset()方法用來檢查私有屬性是否存在,__unset()方法用來刪除對象中的私有屬性。
1、__set()方法
<?php
class person{
private $name;
private $sex;
private $age;
function __construct($name="",$sex="",$age=""){
$this->name=$name;
$this->sex=$sex;
$this->age=$age;
}
/**
聲明魔術方法需要兩個參數,直接為私有屬性賦值時自動調用,并可以屏蔽一些非法賦值
@param string $propertyname 成員屬性名
@param string $propertyvalue 成員屬性值
*/
public function __set($propertyname,$propertyvalue){
//如果第一個參數是屬性名sex則條件成立
if($propertyname=="sex"){
//第二個參數只能是男或女
if(!($propertyvalue=="男"||$propertyvalue=="女")){
//如果是非法參數返回空,則結束方法運行
return;
}
}
if($propertyname=="age"){
if($propertyvalue>150||$propertyvalue<0){
return;
}
}
//根據參數決定為哪個屬性賦值,傳入不同的成員屬性名,賦上傳入的相應的值
$this->$propertyname=$propertyvalue;
}
//下面是聲明人類的成員方法,設置為公有就可以在任何地方訪問
public function say(){
echo "我的名字:".$this->name.";性別:".$this->sex.";年齡:".$this->age."<br/>";
}
}
$person1= new person("張三","男","40"); //括號中也可以不寫
//以下三行自動調用了__set()函數,將屬性名傳給第一個參數,將值傳給第二個參數
$person1->name="李四";
$person1->sex="女";
$person1->age="20";
$person1->say();
?>
程序運行結果為:
我的名字:李四;性別:女;年齡:20; //輸出的是私有成員屬性被重新設置的新值
2、__get()方法
如果在類中聲明了__get()方法,則直接在對象的外部獲取私有屬性的值時,會自動調用此方法,返回私有屬性的值。并且可以在__get()方法中根據不同的屬性,設置一些條件來限制對私有屬性的非法取值操作。和__set()一樣,需要在聲明類時自己將它加到類中才可以使用。
class person{
private $name;
private $sex;
private $age;
function __construct($name="",$sex="",$age=""){
$this->name=$name;
$this->sex=$sex;
$this->age=$age;
}
/**
在類中添加__get()方法,在直接獲取屬性值時自己條用一次,以屬性名作為參數傳入并處理
@param string $propertyname 成員屬性名
@return mixed 返回屬性值
*/
public function __get($propertyname){
if($propertyname=="sex"){
return "保密";
}elseif($propertyname=="age"){
if($this->age>30){
return $this->age-10;
}else{
return $this->$propertyname;
}
}else{
return $this->$propertyname;
}
}
}
$person1=new person("張三","男","20");
echo "姓名:".$person1->name."<br/>"; //直接訪問私有屬性name,自動調用了__get()方法可以間接獲取
echo "性別:".$person1->sex."<br/>"; //自動調用了__get()方法,但在方法中沒有返回真實屬性值
echo "年齡:".$person1->age."<br/>"; //自動調用了__get()方法,根據對象本身的情況會返回不同的值
3、__isset()方法
4、__unset()方法
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。