您好,欢迎访问一九零五行业门户网

php幻术方法: _get() 和 _set()的妙用

php魔术方法: __get() 和 __set()的妙用
?
_setters)) { return $this->$property; } else if (method_exists($this, '_get_' . $property)) return call_user_func(array($this, '_get_' . $property)); else if (in_array($property, $this->_getters) or method_exists($this, '_set_' . $property)) throw new exception('property ' . $property . ' is write-only.'); else throw new exception('property ' . $property . ' is not accessible.'); } public function __set($property, $value) { if (in_array($property, $this->_getters)) { $this->$property = $value; } else if (method_exists($this, '_set_' . $property)) call_user_func(array($this, '_set_' . $property), $value); else if (in_array($property, $this->_setters) or method_exists($this, '_get_' . $property)) throw new exception('property ' . $property . ' is read-only.'); else throw new exception('property ' . $property . ' is not accessible.'); }}?>this way the variables in the $_getters array can be read from the outside and the variables in the $_setters array can be modified from the outside, like this:title = 'hello, world';echo $post->title;// the following will throw an exception since $comments is read-only:$post->comments = 23;?>and in case you need a less generic getter or setter at some point, you can remove the variable from the $_getters or $_setters array and implement a method like:title = str_replace('world', 'universe', $value);}?>and from the outside the property could still be used with:title = 'hello, world!';?>
?上面是手册里的例子,但是我觉得应该是先判断类里面是否有处理属性的方法,有的话就调用该方法,没有就直接设置该属性。
?
其它类似信息

推荐信息