/
home
/
techb158
/
ileadtechnology.com
/
SSM
/
vendor
/
phpseclib
/
bcmath_compat
/
lib
/
/home/techb158/ileadtechnology.com/SSM/vendor/phpseclib/bcmath_compat/lib
mkdir
upload
Name
Size
Mode
Actions
bcmath.php
4309
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/SSM/vendor/phpseclib/bcmath_compat/lib/bcmath.php
(4309B)
<?php /** * bcmath polyfill * * PHP versions 5 and 7 * * LICENSE: Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * * @author Jim Wigginton <terrafrost@php.net> * @copyright 2019 Jim Wigginton * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link http://phpseclib.sourceforge.net */ use bcmath_compat\BCMath; if (!function_exists('bcadd')) { /** * Add two arbitrary precision numbers * * @var string $left_operand * @var string $right_operand * @var int $scale optional */ function bcadd($left_operand, $right_operand, $scale = 0) { return BCMath::add($left_operand, $right_operand, $scale); } /** * Compare two arbitrary precision numbers * * @var string $left_operand * @var string $right_operand * @var int $scale optional */ function bccomp($left_operand, $right_operand, $scale = 0) { return BCMath::comp($left_operand, $right_operand, $scale); } /** * Divide two arbitrary precision numbers * * @var string $dividend * @var string $divisor * @var int $scale optional */ function bcdiv($dividend, $divisor, $scale = 0) { return BCMath::div($dividend, $divisor, $scale); } /** * Get modulus of an arbitrary precision number * * @var string $dividend * @var string $divisor * @var int $scale optional */ function bcmod($dividend, $divisor, $scale = 0) { return BCMath::mod($dividend, $divisor, $scale); } /** * Multiply two arbitrary precision numbers * * @var string $left_operand * @var string $right_operand * @var int $scale optional */ function bcmul($dividend, $divisor, $scale = 0) { return BCMath::mul($dividend, $divisor, $scale); } /** * Raise an arbitrary precision number to another * * @var string $base * @var string $exponent * @var int $scale optional */ function bcpow($base, $exponent, $scale = 0) { return BCMath::pow($base, $exponent, $scale); } /** * Raise an arbitrary precision number to another, reduced by a specified modulus * * @var string $base * @var string $exponent * @var string $modulus * @var int $scale optional */ function bcpowmod($base, $exponent, $modulus, $scale = 0) { return BCMath::powmod($base, $exponent, $modulus, $scale); } /** * Set or get default scale parameter for all bc math functions * * @var int $scale */ function bcscale($scale = null) { return BCMath::scale($scale); } /** * Get the square root of an arbitrary precision number * * @var string $operand * @var int $scale optional */ function bcsqrt($operand, $scale = 0) { return BCMath::sqrt($operand, $scale); } /** * Subtract one arbitrary precision number from another * * @var string $left_operand * @var string $right_operand * @var int $scale optional */ function bcsub($left_operand, $right_operand, $scale = 0) { return BCMath::sub($left_operand, $right_operand, $scale); } }
Save
cmd:
run