定义和用法
这个gmp_lcm()函数计算给定 GMP 编号的 LCM。
描述
gmp_lcm() 函数将返回给定两个 GMP 编号的最小公倍数。
用法
gmp_lcm ( mixed $a , mixed $b ):GMP
参数
Sr.No | 参数及说明 |
---|---|
1 |
a 它可以是 GMP 资源编号、gmp 对象或数字字符串。 |
2 |
b 它可以是 GMP 资源编号、gmp 对象或数字字符串。 b 的值必须是正数和奇数。 |
返回值
PHP gmp_lcm() 函数计算 LCM 并将其作为 GMP 编号返回。
PHP版本
此函数适用于 7.3.0 以上的 PHP 版本。
例子1
gmp_lcm 的工作 -
<?php
$lcm = gmp_lcm("12", "18");
echo "The LCM is:".$lcm;
?>
这将产生以下结果 -
The LCM is:36
例子2
gmp_lcm 的工作 -
<?php
$lcm = gmp_lcm("120", "180");
echo "The LCM is:".$lcm;
?>
这将产生以下结果 -
The LCM is:360
相关用法
- PHP gmp_legendre()用法及代码示例
- PHP gmp_clrbit()用法及代码示例
- PHP gmp_cmp()用法及代码示例
- PHP gmp_testbit()用法及代码示例
- PHP gmp_root()用法及代码示例
- PHP gmp_div_r()用法及代码示例
- PHP gmp_sub()用法及代码示例
- PHP gmp_sqrt()用法及代码示例
- PHP gmp_import()用法及代码示例
- PHP gmp_pow()用法及代码示例
- PHP gmp_scan0()用法及代码示例
- PHP gmp_or()用法及代码示例
- PHP gmp_abs()用法及代码示例
- PHP gmp_hamdist()用法及代码示例
- PHP gmp_binomial()用法及代码示例
- PHP gmp_strval()用法及代码示例
- PHP gmp_sqrtrem()用法及代码示例
- PHP gmp_neg()用法及代码示例
- PHP gmp_com()用法及代码示例
- PHP gmp_gcd()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - gmp_lcm() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。