1999-04-22 07:28:00 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2014-09-20 00:33:14 +08:00
|
|
|
| PHP Version 7 |
|
1999-04-22 07:28:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2016-01-02 01:19:27 +08:00
|
|
|
| Copyright (c) 1997-2016 The PHP Group |
|
1999-04-22 07:28:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
1999-07-16 21:13:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
1999-07-16 21:13:16 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
1999-04-22 07:28:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2002-02-28 16:29:35 +08:00
|
|
|
| Author: Andi Gutmans <andi@zend.com> |
|
1999-04-22 07:28:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2001-05-24 18:07:29 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
1999-04-22 07:28:00 +08:00
|
|
|
#include "php.h"
|
|
|
|
|
2003-12-10 07:59:33 +08:00
|
|
|
#if HAVE_BCMATH
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2003-12-10 07:59:33 +08:00
|
|
|
#include "php_ini.h"
|
2000-10-08 19:45:18 +08:00
|
|
|
#include "ext/standard/info.h"
|
1999-12-15 05:44:35 +08:00
|
|
|
#include "php_bcmath.h"
|
2002-08-18 12:33:10 +08:00
|
|
|
#include "libbcmath/src/bcmath.h"
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2007-06-07 06:09:25 +08:00
|
|
|
ZEND_DECLARE_MODULE_GLOBALS(bcmath)
|
2006-06-16 02:33:09 +08:00
|
|
|
static PHP_GINIT_FUNCTION(bcmath);
|
2006-11-10 20:02:10 +08:00
|
|
|
static PHP_GSHUTDOWN_FUNCTION(bcmath);
|
2002-11-22 17:25:29 +08:00
|
|
|
|
2006-06-11 09:42:17 +08:00
|
|
|
/* {{{ arginfo */
|
|
|
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_bcadd, 0, 0, 2)
|
|
|
|
ZEND_ARG_INFO(0, left_operand)
|
|
|
|
ZEND_ARG_INFO(0, right_operand)
|
|
|
|
ZEND_ARG_INFO(0, scale)
|
|
|
|
ZEND_END_ARG_INFO()
|
|
|
|
|
|
|
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_bcsub, 0, 0, 2)
|
|
|
|
ZEND_ARG_INFO(0, left_operand)
|
|
|
|
ZEND_ARG_INFO(0, right_operand)
|
|
|
|
ZEND_ARG_INFO(0, scale)
|
|
|
|
ZEND_END_ARG_INFO()
|
|
|
|
|
|
|
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_bcmul, 0, 0, 2)
|
|
|
|
ZEND_ARG_INFO(0, left_operand)
|
|
|
|
ZEND_ARG_INFO(0, right_operand)
|
|
|
|
ZEND_ARG_INFO(0, scale)
|
|
|
|
ZEND_END_ARG_INFO()
|
|
|
|
|
|
|
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_bcdiv, 0, 0, 2)
|
|
|
|
ZEND_ARG_INFO(0, left_operand)
|
|
|
|
ZEND_ARG_INFO(0, right_operand)
|
|
|
|
ZEND_ARG_INFO(0, scale)
|
|
|
|
ZEND_END_ARG_INFO()
|
|
|
|
|
|
|
|
ZEND_BEGIN_ARG_INFO(arginfo_bcmod, 0)
|
|
|
|
ZEND_ARG_INFO(0, left_operand)
|
|
|
|
ZEND_ARG_INFO(0, right_operand)
|
|
|
|
ZEND_END_ARG_INFO()
|
|
|
|
|
|
|
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_bcpowmod, 0, 0, 3)
|
|
|
|
ZEND_ARG_INFO(0, x)
|
|
|
|
ZEND_ARG_INFO(0, y)
|
|
|
|
ZEND_ARG_INFO(0, mod)
|
|
|
|
ZEND_ARG_INFO(0, scale)
|
|
|
|
ZEND_END_ARG_INFO()
|
|
|
|
|
|
|
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_bcpow, 0, 0, 2)
|
|
|
|
ZEND_ARG_INFO(0, x)
|
|
|
|
ZEND_ARG_INFO(0, y)
|
|
|
|
ZEND_ARG_INFO(0, scale)
|
|
|
|
ZEND_END_ARG_INFO()
|
|
|
|
|
|
|
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_bcsqrt, 0, 0, 1)
|
|
|
|
ZEND_ARG_INFO(0, operand)
|
|
|
|
ZEND_ARG_INFO(0, scale)
|
|
|
|
ZEND_END_ARG_INFO()
|
|
|
|
|
|
|
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_bccomp, 0, 0, 2)
|
|
|
|
ZEND_ARG_INFO(0, left_operand)
|
|
|
|
ZEND_ARG_INFO(0, right_operand)
|
|
|
|
ZEND_ARG_INFO(0, scale)
|
|
|
|
ZEND_END_ARG_INFO()
|
|
|
|
|
|
|
|
ZEND_BEGIN_ARG_INFO(arginfo_bcscale, 0)
|
|
|
|
ZEND_ARG_INFO(0, scale)
|
|
|
|
ZEND_END_ARG_INFO()
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
const zend_function_entry bcmath_functions[] = {
|
2006-06-11 09:42:17 +08:00
|
|
|
PHP_FE(bcadd, arginfo_bcadd)
|
|
|
|
PHP_FE(bcsub, arginfo_bcsub)
|
|
|
|
PHP_FE(bcmul, arginfo_bcmul)
|
|
|
|
PHP_FE(bcdiv, arginfo_bcdiv)
|
|
|
|
PHP_FE(bcmod, arginfo_bcmod)
|
|
|
|
PHP_FE(bcpow, arginfo_bcpow)
|
|
|
|
PHP_FE(bcsqrt, arginfo_bcsqrt)
|
|
|
|
PHP_FE(bcscale, arginfo_bcscale)
|
|
|
|
PHP_FE(bccomp, arginfo_bccomp)
|
|
|
|
PHP_FE(bcpowmod, arginfo_bcpowmod)
|
2011-07-25 19:35:02 +08:00
|
|
|
PHP_FE_END
|
1999-04-22 07:28:00 +08:00
|
|
|
};
|
|
|
|
|
1999-12-18 04:55:31 +08:00
|
|
|
zend_module_entry bcmath_module_entry = {
|
2001-10-12 07:33:59 +08:00
|
|
|
STANDARD_MODULE_HEADER,
|
2000-10-08 19:45:18 +08:00
|
|
|
"bcmath",
|
2001-10-12 07:33:59 +08:00
|
|
|
bcmath_functions,
|
2003-12-10 07:59:33 +08:00
|
|
|
PHP_MINIT(bcmath),
|
|
|
|
PHP_MSHUTDOWN(bcmath),
|
2006-11-10 20:02:10 +08:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2000-10-08 19:45:18 +08:00
|
|
|
PHP_MINFO(bcmath),
|
2015-03-24 03:13:59 +08:00
|
|
|
PHP_BCMATH_VERSION,
|
2006-06-16 02:33:09 +08:00
|
|
|
PHP_MODULE_GLOBALS(bcmath),
|
|
|
|
PHP_GINIT(bcmath),
|
2006-11-10 20:02:10 +08:00
|
|
|
PHP_GSHUTDOWN(bcmath),
|
2006-06-16 02:33:09 +08:00
|
|
|
NULL,
|
|
|
|
STANDARD_MODULE_PROPERTIES_EX
|
1999-04-22 07:28:00 +08:00
|
|
|
};
|
|
|
|
|
2000-05-23 17:33:51 +08:00
|
|
|
#ifdef COMPILE_DL_BCMATH
|
2014-10-17 21:51:21 +08:00
|
|
|
#ifdef ZTS
|
2016-03-03 23:46:04 +08:00
|
|
|
ZEND_TSRMLS_CACHE_DEFINE()
|
2014-10-17 21:51:21 +08:00
|
|
|
#endif
|
2000-05-02 08:30:36 +08:00
|
|
|
ZEND_GET_MODULE(bcmath)
|
1999-04-22 07:28:00 +08:00
|
|
|
#endif
|
|
|
|
|
2003-12-10 07:59:33 +08:00
|
|
|
/* {{{ PHP_INI */
|
|
|
|
PHP_INI_BEGIN()
|
2007-05-10 17:53:36 +08:00
|
|
|
STD_PHP_INI_ENTRY("bcmath.scale", "0", PHP_INI_ALL, OnUpdateLongGEZero, bc_precision, zend_bcmath_globals, bcmath_globals)
|
2003-12-10 07:59:33 +08:00
|
|
|
PHP_INI_END()
|
|
|
|
/* }}} */
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2006-06-16 02:33:09 +08:00
|
|
|
/* {{{ PHP_GINIT_FUNCTION
|
2003-12-10 07:59:33 +08:00
|
|
|
*/
|
2006-06-16 02:33:09 +08:00
|
|
|
static PHP_GINIT_FUNCTION(bcmath)
|
2000-11-23 04:20:02 +08:00
|
|
|
{
|
2014-10-17 21:51:21 +08:00
|
|
|
#if defined(COMPILE_DL_BCMATH) && defined(ZTS)
|
2015-02-17 00:19:32 +08:00
|
|
|
ZEND_TSRMLS_CACHE_UPDATE();
|
2014-10-17 21:51:21 +08:00
|
|
|
#endif
|
2003-12-10 07:59:33 +08:00
|
|
|
bcmath_globals->bc_precision = 0;
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_init_numbers();
|
2006-11-10 20:02:10 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ PHP_GSHUTDOWN_FUNCTION
|
|
|
|
*/
|
|
|
|
static PHP_GSHUTDOWN_FUNCTION(bcmath)
|
|
|
|
{
|
|
|
|
_bc_free_num_ex(&bcmath_globals->_zero_, 1);
|
|
|
|
_bc_free_num_ex(&bcmath_globals->_one_, 1);
|
|
|
|
_bc_free_num_ex(&bcmath_globals->_two_, 1);
|
2000-11-23 04:20:02 +08:00
|
|
|
}
|
2003-12-10 07:59:33 +08:00
|
|
|
/* }}} */
|
2000-11-23 04:20:02 +08:00
|
|
|
|
2003-12-10 07:59:33 +08:00
|
|
|
/* {{{ PHP_MINIT_FUNCTION
|
|
|
|
*/
|
|
|
|
PHP_MINIT_FUNCTION(bcmath)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
2003-12-10 07:59:33 +08:00
|
|
|
REGISTER_INI_ENTRIES();
|
|
|
|
|
1999-04-22 07:28:00 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
2003-12-10 07:59:33 +08:00
|
|
|
/* }}} */
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2003-12-10 07:59:33 +08:00
|
|
|
/* {{{ PHP_MSHUTDOWN_FUNCTION
|
|
|
|
*/
|
|
|
|
PHP_MSHUTDOWN_FUNCTION(bcmath)
|
2004-07-14 08:14:43 +08:00
|
|
|
{
|
|
|
|
UNREGISTER_INI_ENTRIES();
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2003-12-10 07:59:33 +08:00
|
|
|
/* {{{ PHP_MINFO_FUNCTION
|
|
|
|
*/
|
2000-10-08 19:45:18 +08:00
|
|
|
PHP_MINFO_FUNCTION(bcmath)
|
|
|
|
{
|
2001-07-30 14:18:13 +08:00
|
|
|
php_info_print_table_start();
|
|
|
|
php_info_print_table_row(2, "BCMath support", "enabled");
|
|
|
|
php_info_print_table_end();
|
2008-12-12 21:07:28 +08:00
|
|
|
DISPLAY_INI_ENTRIES();
|
2000-10-08 19:45:18 +08:00
|
|
|
}
|
2003-12-10 07:59:33 +08:00
|
|
|
/* }}} */
|
2000-10-08 19:45:18 +08:00
|
|
|
|
2003-02-05 03:03:30 +08:00
|
|
|
/* {{{ php_str2num
|
|
|
|
Convert to bc_num detecting scale */
|
2014-12-14 06:06:14 +08:00
|
|
|
static void php_str2num(bc_num *num, char *str)
|
2003-02-05 05:07:40 +08:00
|
|
|
{
|
2003-02-05 03:03:30 +08:00
|
|
|
char *p;
|
|
|
|
|
|
|
|
if (!(p = strchr(str, '.'))) {
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_str2num(num, str, 0);
|
2003-02-05 03:03:30 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_str2num(num, str, strlen(p+1));
|
2003-02-05 03:03:30 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2016-04-25 09:33:32 +08:00
|
|
|
/* {{{ split_bc_num
|
|
|
|
Convert to bc_num detecting scale */
|
|
|
|
static bc_num split_bc_num(bc_num num) {
|
|
|
|
bc_num newnum;
|
|
|
|
if (num->n_refs >= 1) {
|
|
|
|
return num;
|
|
|
|
}
|
|
|
|
newnum = _bc_new_num_ex(0, 0, 0);
|
|
|
|
*newnum = *num;
|
|
|
|
newnum->n_refs = 1;
|
|
|
|
num->n_refs--;
|
|
|
|
return newnum;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
1999-04-22 07:28:00 +08:00
|
|
|
/* {{{ proto string bcadd(string left_operand, string right_operand [, int scale])
|
|
|
|
Returns the sum of two arbitrary precision numbers */
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FUNCTION(bcadd)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
2008-06-25 00:01:32 +08:00
|
|
|
char *left, *right;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long scale_param = 0;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
2014-08-27 21:31:48 +08:00
|
|
|
size_t left_len, right_len;
|
2014-10-30 21:36:57 +08:00
|
|
|
int scale = (int)BCG(bc_precision), argc = ZEND_NUM_ARGS();
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (zend_parse_parameters(argc, "ss|l", &left, &left_len, &right, &right_len, &scale_param) == FAILURE) {
|
2008-06-25 00:01:32 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2008-06-25 00:01:32 +08:00
|
|
|
if (argc == 3) {
|
2014-10-30 21:36:57 +08:00
|
|
|
scale = (int) (scale_param < 0 ? 0 : scale_param);
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_init_num(&first);
|
|
|
|
bc_init_num(&second);
|
|
|
|
bc_init_num(&result);
|
|
|
|
php_str2num(&first, left);
|
|
|
|
php_str2num(&second, right);
|
2001-08-12 00:39:07 +08:00
|
|
|
bc_add (first, second, &result, scale);
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2003-03-20 08:22:57 +08:00
|
|
|
if (result->n_scale > scale) {
|
2016-04-25 09:33:32 +08:00
|
|
|
result = split_bc_num(result);
|
2003-02-07 06:18:41 +08:00
|
|
|
result->n_scale = scale;
|
2003-03-20 08:22:57 +08:00
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2014-05-05 14:26:23 +08:00
|
|
|
RETVAL_STR(bc_num2str(result));
|
2000-11-23 04:20:02 +08:00
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&result);
|
1999-04-22 07:28:00 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto string bcsub(string left_operand, string right_operand [, int scale])
|
2000-02-22 23:48:43 +08:00
|
|
|
Returns the difference between two arbitrary precision numbers */
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FUNCTION(bcsub)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
2008-06-25 00:01:32 +08:00
|
|
|
char *left, *right;
|
2014-08-27 21:31:48 +08:00
|
|
|
size_t left_len, right_len;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long scale_param = 0;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
2014-10-30 21:36:57 +08:00
|
|
|
int scale = (int)BCG(bc_precision), argc = ZEND_NUM_ARGS();
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (zend_parse_parameters(argc, "ss|l", &left, &left_len, &right, &right_len, &scale_param) == FAILURE) {
|
2008-06-25 00:01:32 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2008-06-25 00:01:32 +08:00
|
|
|
if (argc == 3) {
|
2014-10-30 21:36:57 +08:00
|
|
|
scale = (int) ((int)scale_param < 0 ? 0 : scale_param);
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_init_num(&first);
|
|
|
|
bc_init_num(&second);
|
|
|
|
bc_init_num(&result);
|
|
|
|
php_str2num(&first, left);
|
|
|
|
php_str2num(&second, right);
|
2001-08-12 00:39:07 +08:00
|
|
|
bc_sub (first, second, &result, scale);
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2003-03-20 08:22:57 +08:00
|
|
|
if (result->n_scale > scale) {
|
2016-04-25 09:33:32 +08:00
|
|
|
result = split_bc_num(result);
|
2003-02-07 06:18:41 +08:00
|
|
|
result->n_scale = scale;
|
2003-03-20 08:22:57 +08:00
|
|
|
}
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-05-05 14:26:23 +08:00
|
|
|
RETVAL_STR(bc_num2str(result));
|
2000-11-23 04:20:02 +08:00
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&result);
|
1999-04-22 07:28:00 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto string bcmul(string left_operand, string right_operand [, int scale])
|
|
|
|
Returns the multiplication of two arbitrary precision numbers */
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FUNCTION(bcmul)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
2008-06-25 00:01:32 +08:00
|
|
|
char *left, *right;
|
2014-08-27 21:31:48 +08:00
|
|
|
size_t left_len, right_len;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long scale_param = 0;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
2014-10-30 21:36:57 +08:00
|
|
|
int scale = (int)BCG(bc_precision), argc = ZEND_NUM_ARGS();
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (zend_parse_parameters(argc, "ss|l", &left, &left_len, &right, &right_len, &scale_param) == FAILURE) {
|
2008-06-25 00:01:32 +08:00
|
|
|
return;
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2008-06-25 00:01:32 +08:00
|
|
|
if (argc == 3) {
|
2014-10-30 21:36:57 +08:00
|
|
|
scale = (int) ((int)scale_param < 0 ? 0 : scale_param);
|
2008-06-25 00:01:32 +08:00
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_init_num(&first);
|
|
|
|
bc_init_num(&second);
|
|
|
|
bc_init_num(&result);
|
|
|
|
php_str2num(&first, left);
|
|
|
|
php_str2num(&second, right);
|
|
|
|
bc_multiply (first, second, &result, scale);
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2003-03-20 08:22:57 +08:00
|
|
|
if (result->n_scale > scale) {
|
2016-04-25 09:33:32 +08:00
|
|
|
result = split_bc_num(result);
|
2003-02-07 06:18:41 +08:00
|
|
|
result->n_scale = scale;
|
2003-03-20 08:22:57 +08:00
|
|
|
}
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-05-05 14:26:23 +08:00
|
|
|
RETVAL_STR(bc_num2str(result));
|
2000-11-23 04:20:02 +08:00
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&result);
|
1999-04-22 07:28:00 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto string bcdiv(string left_operand, string right_operand [, int scale])
|
|
|
|
Returns the quotient of two arbitrary precision numbers (division) */
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FUNCTION(bcdiv)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
2008-06-25 00:01:32 +08:00
|
|
|
char *left, *right;
|
2014-08-27 21:31:48 +08:00
|
|
|
size_t left_len, right_len;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long scale_param = 0;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
2014-10-30 21:36:57 +08:00
|
|
|
int scale = (int)BCG(bc_precision), argc = ZEND_NUM_ARGS();
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (zend_parse_parameters(argc, "ss|l", &left, &left_len, &right, &right_len, &scale_param) == FAILURE) {
|
2008-06-25 00:01:32 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2008-06-25 00:01:32 +08:00
|
|
|
if (argc == 3) {
|
2014-10-30 21:36:57 +08:00
|
|
|
scale = (int) ((int)scale_param < 0 ? 0 : scale_param);
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_init_num(&first);
|
|
|
|
bc_init_num(&second);
|
|
|
|
bc_init_num(&result);
|
|
|
|
php_str2num(&first, left);
|
|
|
|
php_str2num(&second, right);
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
switch (bc_divide(first, second, &result, scale)) {
|
1999-04-22 07:28:00 +08:00
|
|
|
case 0: /* OK */
|
2003-03-20 08:22:57 +08:00
|
|
|
if (result->n_scale > scale) {
|
2016-04-25 09:33:32 +08:00
|
|
|
result = split_bc_num(result);
|
2003-02-07 06:18:41 +08:00
|
|
|
result->n_scale = scale;
|
2003-03-20 08:22:57 +08:00
|
|
|
}
|
2014-05-05 14:26:23 +08:00
|
|
|
RETVAL_STR(bc_num2str(result));
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
case -1: /* division by zero */
|
2014-12-14 06:06:14 +08:00
|
|
|
php_error_docref(NULL, E_WARNING, "Division by zero");
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
}
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2000-11-23 04:20:02 +08:00
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&result);
|
1999-04-22 07:28:00 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto string bcmod(string left_operand, string right_operand)
|
|
|
|
Returns the modulus of the two arbitrary precision operands */
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FUNCTION(bcmod)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
2008-06-25 00:01:32 +08:00
|
|
|
char *left, *right;
|
2014-08-27 21:31:48 +08:00
|
|
|
size_t left_len, right_len;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss", &left, &left_len, &right, &right_len) == FAILURE) {
|
2008-06-25 00:01:32 +08:00
|
|
|
return;
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_init_num(&first);
|
|
|
|
bc_init_num(&second);
|
|
|
|
bc_init_num(&result);
|
|
|
|
bc_str2num(&first, left, 0);
|
|
|
|
bc_str2num(&second, right, 0);
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
switch (bc_modulo(first, second, &result, 0)) {
|
1999-04-22 07:28:00 +08:00
|
|
|
case 0:
|
2014-05-05 14:26:23 +08:00
|
|
|
RETVAL_STR(bc_num2str(result));
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
case -1:
|
2014-12-14 06:06:14 +08:00
|
|
|
php_error_docref(NULL, E_WARNING, "Division by zero");
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2000-11-23 04:20:02 +08:00
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&result);
|
1999-04-22 07:28:00 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2002-12-12 00:28:16 +08:00
|
|
|
/* {{{ proto string bcpowmod(string x, string y, string mod [, int scale])
|
2002-12-11 03:04:27 +08:00
|
|
|
Returns the value of an arbitrary precision number raised to the power of another reduced by a modulous */
|
2002-12-12 00:28:16 +08:00
|
|
|
PHP_FUNCTION(bcpowmod)
|
2002-12-11 03:04:27 +08:00
|
|
|
{
|
|
|
|
char *left, *right, *modulous;
|
2014-08-27 21:31:48 +08:00
|
|
|
size_t left_len, right_len, modulous_len;
|
2002-12-11 03:04:27 +08:00
|
|
|
bc_num first, second, mod, result;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long scale = BCG(bc_precision);
|
2007-06-07 06:09:25 +08:00
|
|
|
int scale_int;
|
2002-12-11 03:04:27 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "sss|l", &left, &left_len, &right, &right_len, &modulous, &modulous_len, &scale) == FAILURE) {
|
2006-11-03 22:46:48 +08:00
|
|
|
return;
|
2002-12-11 03:04:27 +08:00
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_init_num(&first);
|
|
|
|
bc_init_num(&second);
|
|
|
|
bc_init_num(&mod);
|
|
|
|
bc_init_num(&result);
|
|
|
|
php_str2num(&first, left);
|
|
|
|
php_str2num(&second, right);
|
|
|
|
php_str2num(&mod, modulous);
|
2007-06-07 06:09:25 +08:00
|
|
|
|
2014-10-30 21:36:57 +08:00
|
|
|
scale_int = (int) ((int)scale < 0 ? 0 : scale);
|
2007-06-07 06:09:25 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (bc_raisemod(first, second, mod, &result, scale_int) != -1) {
|
2016-04-27 18:24:28 +08:00
|
|
|
if (result->n_scale > scale_int) {
|
|
|
|
result = split_bc_num(result);
|
|
|
|
result->n_scale = scale_int;
|
2007-06-08 08:41:57 +08:00
|
|
|
}
|
2014-05-05 14:26:23 +08:00
|
|
|
RETVAL_STR(bc_num2str(result));
|
2007-06-08 08:41:57 +08:00
|
|
|
} else {
|
|
|
|
RETVAL_FALSE;
|
2003-03-20 08:22:57 +08:00
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2002-12-11 03:04:27 +08:00
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&mod);
|
|
|
|
bc_free_num(&result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
1999-04-22 07:28:00 +08:00
|
|
|
/* {{{ proto string bcpow(string x, string y [, int scale])
|
|
|
|
Returns the value of an arbitrary precision number raised to the power of another */
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FUNCTION(bcpow)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
2008-06-25 00:01:32 +08:00
|
|
|
char *left, *right;
|
2014-08-27 21:31:48 +08:00
|
|
|
size_t left_len, right_len;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long scale_param = 0;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
2014-10-30 21:36:57 +08:00
|
|
|
int scale = (int)BCG(bc_precision), argc = ZEND_NUM_ARGS();
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (zend_parse_parameters(argc, "ss|l", &left, &left_len, &right, &right_len, &scale_param) == FAILURE) {
|
2008-06-25 00:01:32 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2008-06-25 00:01:32 +08:00
|
|
|
if (argc == 3) {
|
2014-10-30 21:36:57 +08:00
|
|
|
scale = (int) ((int)scale_param < 0 ? 0 : scale_param);
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_init_num(&first);
|
|
|
|
bc_init_num(&second);
|
|
|
|
bc_init_num(&result);
|
|
|
|
php_str2num(&first, left);
|
|
|
|
php_str2num(&second, right);
|
|
|
|
bc_raise (first, second, &result, scale);
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2003-03-20 08:22:57 +08:00
|
|
|
if (result->n_scale > scale) {
|
2016-04-25 09:33:32 +08:00
|
|
|
result = split_bc_num(result);
|
2003-02-07 06:18:41 +08:00
|
|
|
result->n_scale = scale;
|
2003-03-20 08:22:57 +08:00
|
|
|
}
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-05-05 14:26:23 +08:00
|
|
|
RETVAL_STR(bc_num2str(result));
|
2000-11-23 04:20:02 +08:00
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&result);
|
1999-04-22 07:28:00 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto string bcsqrt(string operand [, int scale])
|
|
|
|
Returns the square root of an arbitray precision number */
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FUNCTION(bcsqrt)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
2008-06-25 00:01:32 +08:00
|
|
|
char *left;
|
2014-08-27 23:31:24 +08:00
|
|
|
size_t left_len;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long scale_param = 0;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num result;
|
2014-10-30 21:36:57 +08:00
|
|
|
int scale = (int)BCG(bc_precision), argc = ZEND_NUM_ARGS();
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (zend_parse_parameters(argc, "s|l", &left, &left_len, &scale_param) == FAILURE) {
|
2008-06-25 00:01:32 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2008-06-25 00:01:32 +08:00
|
|
|
if (argc == 2) {
|
2014-10-30 21:36:57 +08:00
|
|
|
scale = (int) ((int)scale_param < 0 ? 0 : scale_param);
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_init_num(&result);
|
|
|
|
php_str2num(&result, left);
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (bc_sqrt (&result, scale) != 0) {
|
2003-03-20 08:22:57 +08:00
|
|
|
if (result->n_scale > scale) {
|
2016-04-25 09:33:32 +08:00
|
|
|
result = split_bc_num(result);
|
2003-02-07 06:18:41 +08:00
|
|
|
result->n_scale = scale;
|
2003-03-20 08:22:57 +08:00
|
|
|
}
|
2014-05-05 14:26:23 +08:00
|
|
|
RETVAL_STR(bc_num2str(result));
|
1999-04-22 07:28:00 +08:00
|
|
|
} else {
|
2014-12-14 06:06:14 +08:00
|
|
|
php_error_docref(NULL, E_WARNING, "Square root of negative number");
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2000-11-23 04:20:02 +08:00
|
|
|
bc_free_num(&result);
|
1999-04-22 07:28:00 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2003-06-12 20:21:33 +08:00
|
|
|
/* {{{ proto int bccomp(string left_operand, string right_operand [, int scale])
|
1999-04-22 07:28:00 +08:00
|
|
|
Compares two arbitrary precision numbers */
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FUNCTION(bccomp)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
2008-06-25 00:01:32 +08:00
|
|
|
char *left, *right;
|
2014-08-27 21:31:48 +08:00
|
|
|
size_t left_len, right_len;
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long scale_param = 0;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second;
|
2014-10-30 21:36:57 +08:00
|
|
|
int scale = (int)BCG(bc_precision), argc = ZEND_NUM_ARGS();
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (zend_parse_parameters(argc, "ss|l", &left, &left_len, &right, &right_len, &scale_param) == FAILURE) {
|
2008-06-25 00:01:32 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2008-06-25 00:01:32 +08:00
|
|
|
if (argc == 3) {
|
2014-10-30 21:36:57 +08:00
|
|
|
scale = (int) ((int)scale_param < 0 ? 0 : scale_param);
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_init_num(&first);
|
|
|
|
bc_init_num(&second);
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_str2num(&first, left, scale);
|
|
|
|
bc_str2num(&second, right, scale);
|
2014-08-26 01:24:55 +08:00
|
|
|
RETVAL_LONG(bc_compare(first, second));
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2000-11-23 04:20:02 +08:00
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
1999-04-22 07:28:00 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2003-06-12 20:21:33 +08:00
|
|
|
/* {{{ proto bool bcscale(int scale)
|
1999-04-22 07:28:00 +08:00
|
|
|
Sets default scale parameter for all bc math functions */
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FUNCTION(bcscale)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_long new_scale;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &new_scale) == FAILURE) {
|
2008-06-25 00:01:32 +08:00
|
|
|
return;
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2011-11-19 20:46:43 +08:00
|
|
|
BCG(bc_precision) = ((int)new_scale < 0) ? 0 : new_scale;
|
2003-04-03 07:51:52 +08:00
|
|
|
|
1999-04-22 07:28:00 +08:00
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
2001-09-09 21:29:31 +08:00
|
|
|
* vim600: sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: sw=4 ts=4
|
1999-04-22 07:28:00 +08:00
|
|
|
*/
|