首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

bcmod

(PHP 4, PHP 5, PHP 7)

bcmod — Get modulus of an arbitrary precision number

Description

代码语言:javascript
复制
string bcmod ( string $dividend , string $modulus )

Get the modulus of the dividend using modulus.

Parameters

dividend

The dividend, as a string.

modulus

The modulus, as a string.

Return Values

Returns the modulus as a string, or NULL if modulus is 0.

Changelog

Version

Description

7.2.0

dividend and modulus are no longer truncated to integer, so now the behavior of bcmod() follows fmod() rather than the % operator.

Examples

Example #1 bcmod() example

代码语言:javascript
复制
<?php
echo bcmod('4', '2'); // 0
echo bcmod('2', '4'); // 2
?>

See Also

  • bcdiv() - Divide two arbitrary precision numbers

← bcdiv

bcmul →

代码语言:txt
复制
 © 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券