HTMLPurifier_UnitConverter::__construct PHP Method

__construct() public method

public __construct ( $output_precision = 4, $internal_precision = 10, $force_no_bcmath = false )
    public function __construct($output_precision = 4, $internal_precision = 10, $force_no_bcmath = false)
    {
        $this->outputPrecision = $output_precision;
        $this->internalPrecision = $internal_precision;
        $this->bcmath = !$force_no_bcmath && function_exists('bcmul');
    }