> php教程 > php手册 > 본문

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

WBOY
풀어 주다: 2016-06-06 19:38:16
원래의
803명이 탐색했습니다.

无详细内容 无 ?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으로 문의하세요.
최신 이슈
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿