首頁 > php教程 > php手册 > 主體

对象私有变量的读取、写入(存取器机制)

WBOY
發布: 2016-06-06 19:38:16
原創
802 人瀏覽過

无详细内容 无 ?php //私有变量的写入与读取class Myinfo{private $Name;private $Age;private $Job;function __call($funcName,$arArguments){$opsType=substr($funcName,0,3);$opsKey=substr($funcName,3);switch($opsType){case 'set':return($this-SetAcc

<?php 
//私有变量的写入与读取

class Myinfo{
	private $Name;
	private $Age;
	private $Job;
	
	function __call($funcName,$arArguments){
		$opsType=substr($funcName,0,3);
		$opsKey=substr($funcName,3);
		
		switch($opsType){
			case 'set':
				return($this->SetAccessor($opsKey,$arArguments[0]));
				break;
			case 'get':
				return($this->GetAccessor($opsKey));
				break;
		}
		return(false);
	}
	
	private function SetAccessor($opsKey,$value){
		if(property_exists($this,$opsKey)){
			if(is_numeric($value)){
				eval('$this->'.$opsKey.'='.$value.';');
			}else{
				eval('$this->'.$opsKey.'="'.$value.'";');
			}
		}else{
			return(false);
		}
	}
	
	private function GetAccessor($opsKey){
		if(property_exists($this,$opsKey)){
			eval('$name=$this->'.$opsKey.';');
			return($name);
		}else{
			return(false);
		}
	}
	
	function __toString(){
		return "Name:$this->Name<br>Age:$this->Age<br>Job:$this->Job<br>";
	}
}

$wzy=new Myinfo();
$wzy->setName('wzy');
$wzy->setAge(22);
$wzy->setJob('Student');

echo $wzy;
?>
登入後複製
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板