_name = $name; $this->_value = $value; } public function& getValue() { $value = &$this->_value; return $value; } public function setValue(&$value) { // DEBUG $selfName = (string)$this; $this->_value = &$value; } public function __toString() { return $this->_name; } } ?>