You are here

public static function Calculator::add in Price 2.0.x

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

Adds the second number to the first 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.

1 call to Calculator::add()
Price::add in src/Price.php
Adds the given price to the current price.

File

src/Calculator.php, line 30

Class

Calculator
Provides helpers for bcmath-based arithmetic.

Namespace

Drupal\price

Code

public static function add(string $first_number, string $second_number, int $scale = 6) : string {
  self::assertNumberFormat($first_number);
  self::assertNumberFormat($second_number);
  $result = bcadd($first_number, $second_number, $scale);
  return self::trim($result);
}