On this page
function _openid_math_mul
_openid_math_mul($x, $y)
Calls the mul function from the available math library for OpenID.
File
- modules/openid/openid.inc, line 752
- OpenID utility functions.
Code
function _openid_math_mul($x, $y) {
$library = _openid_get_math_library();
switch ($library) {
case 'gmp':
return gmp_mul($x, $y);
case 'bcmath':
return bcmul($x, $y);
}
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!openid!openid.inc/function/_openid_math_mul/7.x