value\">$" . number_format($this->value, 2) . ''; $val = self::$currencySymbol . number_format(abs($this->value), 2); if($this->value < 0) return "($val)"; else return $val; } function Whole() { $val = self::$currencySymbol . 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('$',',',self::$currencySymbol),'',$matches[0]); } else { $this->value = 0; } } static function setCurrencySymbol($value) { self::$currencySymbol = $value; } } ?>