You are here

public static function Calculator::divide in Price 3.x

Same name and namespace in other branches
  1. 8 src/Calculator.php \Drupal\price\Calculator::divide()
  2. 2.0.x src/Calculator.php \Drupal\price\Calculator::divide()
  3. 2.x src/Calculator.php \Drupal\price\Calculator::divide()
  4. 3.0.x src/Calculator.php \Drupal\price\Calculator::divide()

Divides the first number by the second number.

Parameters

string $first_number: The first number.

string $second_number: The second number.

int $scale: The maximum number of digits after the decimal place. Any digit after $scale will be truncated.

Return value

string The result.

2 calls to Calculator::divide()
Price::divide in src/Price.php
Divides the current price by the given number.
PriceModified::divide in src/PriceModified.php
Divides the current price by the given number.

File

src/Calculator.php, line 93

Class

Calculator
Provides helpers for bcmath-based arithmetic.

Namespace

Drupal\price

Code

public static function divide($first_number, $second_number, $scale = 6) {
  self::assertNumberFormat($first_number);
  self::assertNumberFormat($second_number);
  $result = bcdiv($first_number, $second_number, $scale);
  return self::trim($result);
}