LoginSignup
5
8

More than 5 years have passed since last update.

価格を100円単位の切り上げにする

Last updated at Posted at 2015-03-26

案件で地味に使います

util
    /*
     * 100円単位切り上げにする
     *
     * 例)
     * 9801円の場合は9900円
     * 10199円の場合は10200円
     * 1010円の場合は1100円
     * 1000円の場合は1000円
     */
    public static function roundupPriceBy100($price)
    {
        return $price + (100 - $price%100)%100;
    }
5
8
7

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
8