1999-04-22 07:28:00 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2019-01-30 17:03:12 +08:00
|
|
|
| Copyright (c) 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
|
|
|
+----------------------------------------------------------------------+
|
2018-11-02 00:30:28 +08:00
|
|
|
| Author: Andi Gutmans <andi@php.net> |
|
1999-04-22 07:28:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +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"
|
|
|
|
|
2020-05-13 04:24:01 +08:00
|
|
|
#ifdef HAVE_BCMATH
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2003-12-10 07:59:33 +08:00
|
|
|
#include "php_ini.h"
|
2019-10-28 18:59:20 +08:00
|
|
|
#include "zend_exceptions.h"
|
2019-08-11 00:02:13 +08:00
|
|
|
#include "bcmath_arginfo.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
|
|
|
|
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",
|
2020-04-05 02:41:42 +08:00
|
|
|
ext_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),
|
2020-04-25 07:18:09 +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
|
|
|
|
|
2020-04-25 07:18:09 +08:00
|
|
|
ZEND_INI_MH(OnUpdateScale)
|
|
|
|
{
|
|
|
|
int *p;
|
|
|
|
zend_long tmp;
|
|
|
|
|
|
|
|
tmp = zend_atol(ZSTR_VAL(new_value), ZSTR_LEN(new_value));
|
|
|
|
if (tmp < 0 || tmp > INT_MAX) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = (int *) ZEND_INI_GET_ADDR();
|
|
|
|
*p = (int) tmp;
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
2003-12-10 07:59:33 +08:00
|
|
|
/* {{{ PHP_INI */
|
|
|
|
PHP_INI_BEGIN()
|
2020-04-25 07:18:09 +08:00
|
|
|
STD_PHP_INI_ENTRY("bcmath.scale", "0", PHP_INI_ALL, OnUpdateScale, 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
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ PHP_GINIT_FUNCTION */
|
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
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ PHP_GSHUTDOWN_FUNCTION */
|
2006-11-10 20:02:10 +08:00
|
|
|
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
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ PHP_MINIT_FUNCTION */
|
2003-12-10 07:59:33 +08:00
|
|
|
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
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ PHP_MSHUTDOWN_FUNCTION */
|
2003-12-10 07:59:33 +08:00
|
|
|
PHP_MSHUTDOWN_FUNCTION(bcmath)
|
2004-07-14 08:14:43 +08:00
|
|
|
{
|
|
|
|
UNREGISTER_INI_ENTRIES();
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +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 */
|
2020-12-28 04:15:06 +08:00
|
|
|
static zend_result 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, '.'))) {
|
2019-04-30 22:33:04 +08:00
|
|
|
if (!bc_str2num(num, str, 0)) {
|
2020-12-28 04:15:06 +08:00
|
|
|
return FAILURE;
|
2019-04-30 22:33:04 +08:00
|
|
|
}
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
return SUCCESS;
|
2003-02-05 03:03:30 +08:00
|
|
|
}
|
|
|
|
|
2019-04-30 22:33:04 +08:00
|
|
|
if (!bc_str2num(num, str, strlen(p+1))) {
|
2020-12-28 04:15:06 +08:00
|
|
|
return FAILURE;
|
2019-04-30 22:33:04 +08:00
|
|
|
}
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
return SUCCESS;
|
2003-02-05 03:03:30 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ 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
|
|
|
{
|
2016-12-28 15:35:38 +08:00
|
|
|
zend_string *left, *right;
|
2020-05-02 02:49:47 +08:00
|
|
|
zend_long scale_param;
|
2021-01-15 19:30:54 +08:00
|
|
|
bool scale_param_is_null = 1;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
2020-05-02 02:49:47 +08:00
|
|
|
int scale;
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_START(2, 3)
|
|
|
|
Z_PARAM_STR(left)
|
|
|
|
Z_PARAM_STR(right)
|
|
|
|
Z_PARAM_OPTIONAL
|
2020-05-02 02:49:47 +08:00
|
|
|
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_END();
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2020-05-02 02:49:47 +08:00
|
|
|
if (scale_param_is_null) {
|
|
|
|
scale = BCG(bc_precision);
|
|
|
|
} else if (scale_param < 0 || scale_param > INT_MAX) {
|
|
|
|
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
|
|
|
|
RETURN_THROWS();
|
|
|
|
} else {
|
2020-04-25 07:18:09 +08:00
|
|
|
scale = (int) 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);
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
|
|
|
|
zend_argument_value_error(1, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
|
|
|
|
zend_argument_value_error(2, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2001-08-12 00:39:07 +08:00
|
|
|
bc_add (first, second, &result, scale);
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2017-09-09 00:31:04 +08:00
|
|
|
RETVAL_STR(bc_num2str_ex(result, scale));
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
cleanup: {
|
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&result);
|
|
|
|
};
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +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
|
|
|
{
|
2016-12-28 15:35:38 +08:00
|
|
|
zend_string *left, *right;
|
2020-05-02 02:49:47 +08:00
|
|
|
zend_long scale_param;
|
2021-01-15 19:30:54 +08:00
|
|
|
bool scale_param_is_null = 1;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
2020-05-02 02:49:47 +08:00
|
|
|
int scale;
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_START(2, 3)
|
|
|
|
Z_PARAM_STR(left)
|
|
|
|
Z_PARAM_STR(right)
|
|
|
|
Z_PARAM_OPTIONAL
|
2020-05-02 02:49:47 +08:00
|
|
|
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_END();
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2020-05-02 02:49:47 +08:00
|
|
|
if (scale_param_is_null) {
|
|
|
|
scale = BCG(bc_precision);
|
|
|
|
} else if (scale_param < 0 || scale_param > INT_MAX) {
|
|
|
|
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
|
|
|
|
RETURN_THROWS();
|
|
|
|
} else {
|
2020-04-25 07:18:09 +08:00
|
|
|
scale = (int) 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);
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
|
|
|
|
zend_argument_value_error(1, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
|
|
|
|
zend_argument_value_error(2, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2001-08-12 00:39:07 +08:00
|
|
|
bc_sub (first, second, &result, scale);
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2017-09-09 00:31:04 +08:00
|
|
|
RETVAL_STR(bc_num2str_ex(result, scale));
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
cleanup: {
|
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&result);
|
|
|
|
};
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ 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
|
|
|
{
|
2016-12-28 15:35:38 +08:00
|
|
|
zend_string *left, *right;
|
2020-05-02 02:49:47 +08:00
|
|
|
zend_long scale_param;
|
2021-01-15 19:30:54 +08:00
|
|
|
bool scale_param_is_null = 1;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
2020-05-02 02:49:47 +08:00
|
|
|
int scale;
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_START(2, 3)
|
|
|
|
Z_PARAM_STR(left)
|
|
|
|
Z_PARAM_STR(right)
|
|
|
|
Z_PARAM_OPTIONAL
|
2020-05-02 02:49:47 +08:00
|
|
|
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_END();
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2020-05-02 02:49:47 +08:00
|
|
|
if (scale_param_is_null) {
|
|
|
|
scale = BCG(bc_precision);
|
|
|
|
} else if (scale_param < 0 || scale_param > INT_MAX) {
|
|
|
|
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
|
|
|
|
RETURN_THROWS();
|
|
|
|
} else {
|
2020-04-25 07:18:09 +08:00
|
|
|
scale = (int) 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);
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
|
|
|
|
zend_argument_value_error(1, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
|
|
|
|
zend_argument_value_error(2, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_multiply (first, second, &result, scale);
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2017-09-09 00:31:04 +08:00
|
|
|
RETVAL_STR(bc_num2str_ex(result, scale));
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
cleanup: {
|
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&result);
|
|
|
|
};
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ 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
|
|
|
{
|
2016-12-28 15:35:38 +08:00
|
|
|
zend_string *left, *right;
|
2020-05-02 02:49:47 +08:00
|
|
|
zend_long scale_param;
|
2021-01-15 19:30:54 +08:00
|
|
|
bool scale_param_is_null = 1;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
2020-04-25 07:18:09 +08:00
|
|
|
int scale = BCG(bc_precision);
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_START(2, 3)
|
|
|
|
Z_PARAM_STR(left)
|
|
|
|
Z_PARAM_STR(right)
|
|
|
|
Z_PARAM_OPTIONAL
|
2020-05-02 02:49:47 +08:00
|
|
|
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_END();
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2020-05-02 02:49:47 +08:00
|
|
|
if (scale_param_is_null) {
|
|
|
|
scale = BCG(bc_precision);
|
|
|
|
} else if (scale_param < 0 || scale_param > INT_MAX) {
|
|
|
|
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
|
|
|
|
RETURN_THROWS();
|
|
|
|
} else {
|
2020-04-25 07:18:09 +08:00
|
|
|
scale = (int) 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);
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
|
|
|
|
zend_argument_value_error(1, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
|
|
|
|
zend_argument_value_error(2, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
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 */
|
2017-09-09 00:31:04 +08:00
|
|
|
RETVAL_STR(bc_num2str_ex(result, scale));
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
case -1: /* division by zero */
|
2019-10-28 18:59:20 +08:00
|
|
|
zend_throw_exception_ex(zend_ce_division_by_zero_error, 0, "Division by zero");
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
}
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2020-12-28 04:15:06 +08:00
|
|
|
cleanup: {
|
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&result);
|
|
|
|
};
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ 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
|
|
|
{
|
2016-12-28 15:35:38 +08:00
|
|
|
zend_string *left, *right;
|
2020-05-02 02:49:47 +08:00
|
|
|
zend_long scale_param;
|
2021-01-15 19:30:54 +08:00
|
|
|
bool scale_param_is_null = 1;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
2020-04-25 07:18:09 +08:00
|
|
|
int scale = BCG(bc_precision);
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2017-09-09 21:43:02 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_START(2, 3)
|
2016-12-28 15:44:18 +08:00
|
|
|
Z_PARAM_STR(left)
|
|
|
|
Z_PARAM_STR(right)
|
2017-09-09 21:43:02 +08:00
|
|
|
Z_PARAM_OPTIONAL
|
2020-05-02 02:49:47 +08:00
|
|
|
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_END();
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2020-05-02 02:49:47 +08:00
|
|
|
if (scale_param_is_null) {
|
|
|
|
scale = BCG(bc_precision);
|
|
|
|
} else if (scale_param < 0 || scale_param > INT_MAX) {
|
|
|
|
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
|
|
|
|
RETURN_THROWS();
|
|
|
|
} else {
|
2020-04-25 07:18:09 +08:00
|
|
|
scale = (int) scale_param;
|
2017-09-09 21:43:02 +08:00
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_init_num(&first);
|
|
|
|
bc_init_num(&second);
|
|
|
|
bc_init_num(&result);
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
|
|
|
|
zend_argument_value_error(1, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
|
|
|
|
zend_argument_value_error(2, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2017-09-09 21:43:02 +08:00
|
|
|
switch (bc_modulo(first, second, &result, scale)) {
|
1999-04-22 07:28:00 +08:00
|
|
|
case 0:
|
2017-11-07 23:37:31 +08:00
|
|
|
RETVAL_STR(bc_num2str_ex(result, scale));
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
case -1:
|
2019-10-28 18:59:20 +08:00
|
|
|
zend_throw_exception_ex(zend_ce_division_by_zero_error, 0, "Modulo by zero");
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2020-12-28 04:15:06 +08:00
|
|
|
cleanup: {
|
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&result);
|
|
|
|
};
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Returns the value of an arbitrary precision number raised to the power of another reduced by a modulus */
|
2002-12-12 00:28:16 +08:00
|
|
|
PHP_FUNCTION(bcpowmod)
|
2002-12-11 03:04:27 +08:00
|
|
|
{
|
2019-08-11 00:02:13 +08:00
|
|
|
zend_string *left, *right, *modulus;
|
2020-05-02 02:49:47 +08:00
|
|
|
zend_long scale_param;
|
2021-01-15 19:30:54 +08:00
|
|
|
bool scale_param_is_null = 1;
|
2002-12-11 03:04:27 +08:00
|
|
|
bc_num first, second, mod, result;
|
2020-04-25 07:18:09 +08:00
|
|
|
int scale = BCG(bc_precision);
|
2002-12-11 03:04:27 +08:00
|
|
|
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_START(3, 4)
|
|
|
|
Z_PARAM_STR(left)
|
|
|
|
Z_PARAM_STR(right)
|
2019-08-11 00:02:13 +08:00
|
|
|
Z_PARAM_STR(modulus)
|
2016-12-28 15:44:18 +08:00
|
|
|
Z_PARAM_OPTIONAL
|
2020-05-02 02:49:47 +08:00
|
|
|
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_END();
|
2002-12-11 03:04:27 +08:00
|
|
|
|
2020-05-02 02:49:47 +08:00
|
|
|
if (scale_param_is_null) {
|
|
|
|
scale = BCG(bc_precision);
|
|
|
|
} else if (scale_param < 0 || scale_param > INT_MAX) {
|
|
|
|
zend_argument_value_error(4, "must be between 0 and %d", INT_MAX);
|
|
|
|
RETURN_THROWS();
|
|
|
|
} else {
|
2020-04-25 07:18:09 +08:00
|
|
|
scale = (int) scale_param;
|
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_init_num(&first);
|
|
|
|
bc_init_num(&second);
|
|
|
|
bc_init_num(&mod);
|
|
|
|
bc_init_num(&result);
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
|
|
|
|
zend_argument_value_error(1, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
|
|
|
|
zend_argument_value_error(2, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (php_str2num(&mod, ZSTR_VAL(modulus)) == FAILURE) {
|
|
|
|
zend_argument_value_error(3, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2007-06-07 06:09:25 +08:00
|
|
|
|
2020-09-11 23:40:06 +08:00
|
|
|
if (bc_raisemod(first, second, mod, &result, scale) == SUCCESS) {
|
|
|
|
RETVAL_STR(bc_num2str_ex(result, scale));
|
2003-03-20 08:22:57 +08:00
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2020-12-28 04:15:06 +08:00
|
|
|
cleanup: {
|
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&mod);
|
|
|
|
bc_free_num(&result);
|
|
|
|
};
|
2002-12-11 03:04:27 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ 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
|
|
|
{
|
2016-12-28 15:35:38 +08:00
|
|
|
zend_string *left, *right;
|
2020-05-02 02:49:47 +08:00
|
|
|
zend_long scale_param;
|
2021-01-15 19:30:54 +08:00
|
|
|
bool scale_param_is_null = 1;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
2020-04-25 07:18:09 +08:00
|
|
|
int scale = BCG(bc_precision);
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_START(2, 3)
|
|
|
|
Z_PARAM_STR(left)
|
|
|
|
Z_PARAM_STR(right)
|
|
|
|
Z_PARAM_OPTIONAL
|
2020-05-02 02:49:47 +08:00
|
|
|
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_END();
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2020-05-02 02:49:47 +08:00
|
|
|
if (scale_param_is_null) {
|
|
|
|
scale = BCG(bc_precision);
|
|
|
|
} else if (scale_param < 0 || scale_param > INT_MAX) {
|
|
|
|
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
|
|
|
|
RETURN_THROWS();
|
|
|
|
} else {
|
2020-04-25 07:18:09 +08:00
|
|
|
scale = (int) 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);
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
|
|
|
|
zend_argument_value_error(1, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
|
|
|
|
zend_argument_value_error(2, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
bc_raise (first, second, &result, scale);
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2017-09-09 00:31:04 +08:00
|
|
|
RETVAL_STR(bc_num2str_ex(result, scale));
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
cleanup: {
|
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
bc_free_num(&result);
|
|
|
|
};
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +08:00
|
|
|
/* {{{ Returns the square root of an arbitrary precision number */
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FUNCTION(bcsqrt)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
2016-12-28 15:35:38 +08:00
|
|
|
zend_string *left;
|
2020-05-02 02:49:47 +08:00
|
|
|
zend_long scale_param;
|
2021-01-15 19:30:54 +08:00
|
|
|
bool scale_param_is_null = 1;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num result;
|
2020-04-25 07:18:09 +08:00
|
|
|
int scale = BCG(bc_precision);
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_START(1, 2)
|
|
|
|
Z_PARAM_STR(left)
|
|
|
|
Z_PARAM_OPTIONAL
|
2020-05-02 02:49:47 +08:00
|
|
|
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_END();
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2020-05-02 02:49:47 +08:00
|
|
|
if (scale_param_is_null) {
|
|
|
|
scale = BCG(bc_precision);
|
|
|
|
} else if (scale_param < 0 || scale_param > INT_MAX) {
|
|
|
|
zend_argument_value_error(2, "must be between 0 and %d", INT_MAX);
|
|
|
|
RETURN_THROWS();
|
|
|
|
} else {
|
2020-04-25 07:18:09 +08:00
|
|
|
scale = (int) 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);
|
2020-12-28 04:15:06 +08:00
|
|
|
|
|
|
|
if (php_str2num(&result, ZSTR_VAL(left)) == FAILURE) {
|
|
|
|
zend_argument_value_error(1, "is not well-formed");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
if (bc_sqrt (&result, scale) != 0) {
|
2017-09-09 00:31:04 +08:00
|
|
|
RETVAL_STR(bc_num2str_ex(result, scale));
|
1999-04-22 07:28:00 +08:00
|
|
|
} else {
|
2020-09-11 23:40:06 +08:00
|
|
|
zend_argument_value_error(1, "must be greater than or equal to 0");
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2020-12-28 04:15:06 +08:00
|
|
|
cleanup: {
|
|
|
|
bc_free_num(&result);
|
|
|
|
};
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +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
|
|
|
{
|
2016-12-28 15:35:38 +08:00
|
|
|
zend_string *left, *right;
|
2020-05-02 02:49:47 +08:00
|
|
|
zend_long scale_param;
|
2021-01-15 19:30:54 +08:00
|
|
|
bool scale_param_is_null = 1;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second;
|
2020-04-25 07:18:09 +08:00
|
|
|
int scale = BCG(bc_precision);
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_START(2, 3)
|
|
|
|
Z_PARAM_STR(left)
|
|
|
|
Z_PARAM_STR(right)
|
|
|
|
Z_PARAM_OPTIONAL
|
2020-05-02 02:49:47 +08:00
|
|
|
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_END();
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2020-05-02 02:49:47 +08:00
|
|
|
if (scale_param_is_null) {
|
|
|
|
scale = BCG(bc_precision);
|
|
|
|
} else if (scale_param < 0 || scale_param > INT_MAX) {
|
|
|
|
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
|
|
|
|
RETURN_THROWS();
|
|
|
|
} else {
|
2020-04-25 07:18:09 +08:00
|
|
|
scale = (int) 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
|
|
|
|
2019-04-30 22:33:04 +08:00
|
|
|
if (!bc_str2num(&first, ZSTR_VAL(left), scale)) {
|
2020-12-28 04:15:06 +08:00
|
|
|
zend_argument_value_error(1, "is not well-formed");
|
|
|
|
goto cleanup;
|
2019-04-30 22:33:04 +08:00
|
|
|
}
|
2020-12-28 04:15:06 +08:00
|
|
|
|
2019-04-30 22:33:04 +08:00
|
|
|
if (!bc_str2num(&second, ZSTR_VAL(right), scale)) {
|
2020-12-28 04:15:06 +08:00
|
|
|
zend_argument_value_error(2, "is not well-formed");
|
|
|
|
goto cleanup;
|
2019-04-30 22:33:04 +08:00
|
|
|
}
|
2020-12-28 04:15:06 +08:00
|
|
|
|
2014-08-26 01:24:55 +08:00
|
|
|
RETVAL_LONG(bc_compare(first, second));
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2020-12-28 04:15:06 +08:00
|
|
|
cleanup: {
|
|
|
|
bc_free_num(&first);
|
|
|
|
bc_free_num(&second);
|
|
|
|
};
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2020-07-01 21:32:55 +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
|
|
|
{
|
2017-09-06 20:28:51 +08:00
|
|
|
zend_long old_scale, new_scale;
|
2021-01-15 19:30:54 +08:00
|
|
|
bool new_scale_is_null = 1;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2017-09-06 20:28:51 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_START(0, 1)
|
|
|
|
Z_PARAM_OPTIONAL
|
2020-05-02 02:49:47 +08:00
|
|
|
Z_PARAM_LONG_OR_NULL(new_scale, new_scale_is_null)
|
2016-12-28 15:44:18 +08:00
|
|
|
ZEND_PARSE_PARAMETERS_END();
|
2008-06-25 00:01:32 +08:00
|
|
|
|
2014-08-18 20:49:28 +08:00
|
|
|
old_scale = BCG(bc_precision);
|
|
|
|
|
2020-05-02 02:49:47 +08:00
|
|
|
if (!new_scale_is_null) {
|
2020-04-25 07:18:09 +08:00
|
|
|
if (new_scale < 0 || new_scale > INT_MAX) {
|
|
|
|
zend_argument_value_error(1, "must be between 0 and %d", INT_MAX);
|
|
|
|
RETURN_THROWS();
|
|
|
|
}
|
2020-05-02 02:49:47 +08:00
|
|
|
|
2020-10-21 23:03:54 +08:00
|
|
|
zend_string *ini_name = zend_string_init("bcmath.scale", sizeof("bcmath.scale") - 1, 0);
|
|
|
|
zend_string *new_scale_str = zend_long_to_str(new_scale);
|
|
|
|
zend_alter_ini_entry(ini_name, new_scale_str, PHP_INI_USER, PHP_INI_STAGE_RUNTIME);
|
|
|
|
zend_string_release(new_scale_str);
|
|
|
|
zend_string_release(ini_name);
|
2014-08-18 20:49:28 +08:00
|
|
|
}
|
2003-04-03 07:51:52 +08:00
|
|
|
|
2014-08-18 20:49:28 +08:00
|
|
|
RETURN_LONG(old_scale);
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|