这是我的班级,这个班级的实例知道什么时候应该保存这个值。您如何看待这一想法以及此实施的优缺点?
class Model_User_Doc extends ArrayObject {
protected $_id;
protected $_value;
protected $_db;
protected $_changed = FALSE;
public function __construct($id = NULL) {
if ($id !== NULL) {
$this->_id = $id;
$this->_db = DB::instance();
$this->_value = $this->_db->get($id);
}
}
public function __set($key, $value) {
$this->_changed = TRUE;
$this->_value[$key] = $value;
}
public function __get($key) {
if (isset($this->_value[$key])) {
return $this->_value[$key];
}
return NULL;
}
public function __unset($key) {
$result = FALSE;
if (isset($this->_value[$key])) {
$this->_changed = TRUE;
unset($this->_value[$key]);
$result = TRUE;
}
return $result;
}
public function offsetGet($name) {
return $this->_value[$name];
}
public function offsetSet($name, $value) {
$this->_changed = TRUE;
$this->_value[$name] = $value;
}
public function offsetExists($name) {
return isset($this->_value[$name]);
}
public function offsetUnset($name) {
$this->_changed = TRUE;
unset($this->_value[$name]);
}
public function cas() {
if ($this->_changed === TRUE) {
$this->save();
}
}
public function save() {
$this->_db->set($this->_id, $this->_value);
$this->_changed = FALSE;
}
public function __destruct() {
$this->cas();
}
}
?>
答案 0 :(得分:0)
这应该有效。
但是这有一些挑战。
如果属性是数组或对象,则可以更改属性中的键/属性,而不会触发__set,从而触发脏/更改标志。
你对调用析构函数的顺序没有任何发言权,因此如果没有一些猴子业务,就无法完成需要来自另一个保存操作(例如外键管理)的值的保存操作。
在某些情况下,不会调用析构函数。阅读更多here