示例#1
0
	public function __unset($name)
	{
		NObjectMixin::remove($this, $name);
	}
示例#2
0
文件: Property.php 项目: krecek/nrsn
	public function __call($name, $args)
	{
		return NObjectMixin::callProperty($this, $name, $args);
	}
示例#3
0
 function __isset($name)
 {
     return NObjectMixin::has($this, $name);
 }