value\">$" . number_format($this->value, 2) . ''; $val = '$' . number_format(abs($this->value), 2); if($this->value < 0) return "($val)"; else return $val; } function Whole() { $val = '$' . number_format(abs($this->value), 0); if($this->value < 0) return "($val)"; else return $val; } function setValue($value) { $matches = null; if(is_numeric($value)) { $this->value = $value; } else if(preg_match('/-?\$?[0-9,]+(.[0-9]+)?([Ee][0-9]+)?/', $value, $matches)) { $this->value = str_replace(array('$',','),'',$matches[0]); } else { $this->value = 0; } } } ?>