選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
233B

  1. <?php
  2. namespace App\Util;
  3. class TaxUtil
  4. {
  5. public static function calcInnerTaxAmount(int $amount, int $rate): int
  6. {
  7. $taxRate = $rate / 100;
  8. return intval(floor($amount / (1 + $taxRate) * $taxRate));
  9. }
  10. }