封装性和魔术方法

<?php 
class person{
	public $name;
	private $age;
	protected $sex;
	
	public function __construct($name, $age, $sex){
		$this -> name = $name;
		$this -> age = $age;
		$this -> sex = $sex;
	}
	
	public function __set($name, $value){
		if($name == 'age' && $value > 30){
			$this -> $name = 10;
		}else{
			$this -> $name = 5;
		}
	}
	
	public function __get($name){
		if($name == 'sex'){
			if($this -> $name == 'w'){
				return "{$this -> name} is a woman!";
			}else{
				return "{$this -> name} is a man!";
			}
		}
		return $this -> $name;
	}
	
	public function __isset($name){
		if($name == 'age'){
			return true;
		}
	}
	
	public function __unset($name){
		unset($this -> $name);
	}
}

$person = new person("zhangsan", 18, 'w');
$person -> age = 20; //__set()
echo $person -> age; //__get()
echo "<hr />";
echo $person -> sex; //__get()
echo "<hr />";
var_dump(isset($person -> name)); //isset()做出判断,true or false。如果不存在这个属性或存在属性但未初始化(NULL),就返回false。
var_dump(isset($person -> age)); //__isset()
unset($person -> age); //__unset()
echo "<hr />";
var_dump($person);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值