ShopCurrency::TrimCents PHP 메소드

TrimCents() 공개 메소드

If no cents on the price, trim those off.
public TrimCents ( ) : string
리턴 string
    public function TrimCents()
    {
        $val = $this->value;
        if (floor($val) == $val) {
            return floor($val);
        }
        return $val;
    }