1999-04-22 07:28:00 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
1999-07-16 21:13:16 +08:00
|
|
|
| PHP version 4.0 |
|
1999-04-22 07:28:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-01-01 09:32:05 +08:00
|
|
|
| Copyright (c) 1997, 1998, 1999, 2000 The PHP Group |
|
1999-04-22 07:28:00 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-05-18 23:34:45 +08:00
|
|
|
| This source file is subject to version 2.02 of the PHP license, |
|
1999-07-16 21:13:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
2000-05-18 23:34:45 +08:00
|
|
|
| http://www.php.net/license/2_02.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
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "php.h"
|
|
|
|
|
|
|
|
#if WITH_BCMATH
|
|
|
|
|
|
|
|
#include "number.h"
|
1999-12-15 05:44:35 +08:00
|
|
|
#include "php_bcmath.h"
|
1999-04-22 07:28:00 +08:00
|
|
|
|
|
|
|
function_entry bcmath_functions[] = {
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FE(bcadd, NULL)
|
|
|
|
PHP_FE(bcsub, NULL)
|
|
|
|
PHP_FE(bcmul, NULL)
|
|
|
|
PHP_FE(bcdiv, NULL)
|
|
|
|
PHP_FE(bcmod, NULL)
|
|
|
|
PHP_FE(bcpow, NULL)
|
|
|
|
PHP_FE(bcsqrt, NULL)
|
|
|
|
PHP_FE(bcscale, NULL)
|
|
|
|
PHP_FE(bccomp, NULL)
|
1999-04-22 07:28:00 +08:00
|
|
|
{NULL, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
1999-12-18 04:55:31 +08:00
|
|
|
zend_module_entry bcmath_module_entry = {
|
1999-07-27 04:09:08 +08:00
|
|
|
"bcmath", bcmath_functions, NULL, NULL, PHP_RINIT(bcmath), PHP_RSHUTDOWN(bcmath), NULL, STANDARD_MODULE_PROPERTIES
|
1999-04-22 07:28:00 +08:00
|
|
|
};
|
|
|
|
|
2000-05-23 17:33:51 +08:00
|
|
|
#ifdef COMPILE_DL_BCMATH
|
2000-05-02 08:30:36 +08:00
|
|
|
ZEND_GET_MODULE(bcmath)
|
1999-04-22 07:28:00 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef THREAD_SAFE
|
|
|
|
static long bc_precision;
|
|
|
|
#endif
|
|
|
|
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_RINIT_FUNCTION(bcmath)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
|
|
|
init_numbers();
|
1999-04-24 08:12:00 +08:00
|
|
|
if (cfg_get_long("bcmath.scale",&bc_precision)==FAILURE) {
|
|
|
|
bc_precision=0;
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_RSHUTDOWN_FUNCTION(bcmath)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
|
|
|
destruct_numbers();
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* {{{ 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
|
|
|
{
|
1999-12-21 14:11:52 +08:00
|
|
|
pval **left, **right,**scale_param;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
1999-04-24 08:12:00 +08:00
|
|
|
int scale=bc_precision;
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2000-06-06 03:47:54 +08:00
|
|
|
switch (ZEND_NUM_ARGS()) {
|
1999-04-22 07:28:00 +08:00
|
|
|
case 2:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(2, &left,&right) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(3, &left,&right, &scale_param) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_long_ex(scale_param);
|
|
|
|
scale = (int) (*scale_param)->value.lval;
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_string_ex(left);
|
|
|
|
convert_to_string_ex(right);
|
1999-04-22 07:28:00 +08:00
|
|
|
init_num(&first);
|
|
|
|
init_num(&second);
|
|
|
|
init_num(&result);
|
1999-12-21 14:11:52 +08:00
|
|
|
str2num(&first,(*left)->value.str.val,scale);
|
|
|
|
str2num(&second,(*right)->value.str.val,scale);
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_add (first,second,&result, scale);
|
|
|
|
return_value->value.str.val = num2str(result);
|
|
|
|
return_value->value.str.len = strlen(return_value->value.str.val);
|
|
|
|
return_value->type = IS_STRING;
|
|
|
|
free_num(&first);
|
|
|
|
free_num(&second);
|
|
|
|
free_num(&result);
|
|
|
|
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
|
|
|
{
|
1999-12-21 14:11:52 +08:00
|
|
|
pval **left, **right,**scale_param;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
1999-04-24 08:12:00 +08:00
|
|
|
int scale=bc_precision;
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2000-06-06 03:47:54 +08:00
|
|
|
switch (ZEND_NUM_ARGS()) {
|
1999-04-22 07:28:00 +08:00
|
|
|
case 2:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(2, &left,&right) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(3, &left,&right, &scale_param) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_long_ex(scale_param);
|
|
|
|
scale = (int) (*scale_param)->value.lval;
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_string_ex(left);
|
|
|
|
convert_to_string_ex(right);
|
1999-04-22 07:28:00 +08:00
|
|
|
init_num(&first);
|
|
|
|
init_num(&second);
|
|
|
|
init_num(&result);
|
1999-12-21 14:11:52 +08:00
|
|
|
str2num(&first,(*left)->value.str.val,scale);
|
|
|
|
str2num(&second,(*right)->value.str.val,scale);
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_sub (first,second,&result, scale);
|
|
|
|
return_value->value.str.val = num2str(result);
|
|
|
|
return_value->value.str.len = strlen(return_value->value.str.val);
|
|
|
|
return_value->type = IS_STRING;
|
|
|
|
free_num(&first);
|
|
|
|
free_num(&second);
|
|
|
|
free_num(&result);
|
|
|
|
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
|
|
|
{
|
1999-12-21 14:11:52 +08:00
|
|
|
pval **left, **right,**scale_param;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
1999-04-24 08:12:00 +08:00
|
|
|
int scale=bc_precision;
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2000-06-06 03:47:54 +08:00
|
|
|
switch (ZEND_NUM_ARGS()) {
|
1999-04-22 07:28:00 +08:00
|
|
|
case 2:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(2, &left,&right) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(3, &left,&right, &scale_param) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_long_ex(scale_param);
|
|
|
|
scale = (int) (*scale_param)->value.lval;
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_string_ex(left);
|
|
|
|
convert_to_string_ex(right);
|
1999-04-22 07:28:00 +08:00
|
|
|
init_num(&first);
|
|
|
|
init_num(&second);
|
|
|
|
init_num(&result);
|
1999-12-21 14:11:52 +08:00
|
|
|
str2num(&first,(*left)->value.str.val,scale);
|
|
|
|
str2num(&second,(*right)->value.str.val,scale);
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_multiply (first,second,&result, scale);
|
|
|
|
return_value->value.str.val = num2str(result);
|
|
|
|
return_value->value.str.len = strlen(return_value->value.str.val);
|
|
|
|
return_value->type = IS_STRING;
|
|
|
|
free_num(&first);
|
|
|
|
free_num(&second);
|
|
|
|
free_num(&result);
|
|
|
|
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
|
|
|
{
|
1999-12-21 14:11:52 +08:00
|
|
|
pval **left, **right,**scale_param;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
1999-04-24 08:12:00 +08:00
|
|
|
int scale=bc_precision;
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2000-06-06 03:47:54 +08:00
|
|
|
switch (ZEND_NUM_ARGS()) {
|
1999-04-22 07:28:00 +08:00
|
|
|
case 2:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(2, &left,&right) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(3, &left,&right, &scale_param) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_long_ex(scale_param);
|
|
|
|
scale = (int) (*scale_param)->value.lval;
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_string_ex(left);
|
|
|
|
convert_to_string_ex(right);
|
1999-04-22 07:28:00 +08:00
|
|
|
init_num(&first);
|
|
|
|
init_num(&second);
|
|
|
|
init_num(&result);
|
1999-12-21 14:11:52 +08:00
|
|
|
str2num(&first,(*left)->value.str.val,scale);
|
|
|
|
str2num(&second,(*right)->value.str.val,scale);
|
1999-04-22 07:28:00 +08:00
|
|
|
switch (bc_divide (first,second,&result, scale)) {
|
|
|
|
case 0: /* OK */
|
|
|
|
return_value->value.str.val = num2str(result);
|
|
|
|
return_value->value.str.len = strlen(return_value->value.str.val);
|
|
|
|
return_value->type = IS_STRING;
|
|
|
|
break;
|
|
|
|
case -1: /* division by zero */
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING,"Division by zero");
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
free_num(&first);
|
|
|
|
free_num(&second);
|
|
|
|
free_num(&result);
|
|
|
|
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
|
|
|
{
|
1999-12-21 14:11:52 +08:00
|
|
|
pval **left, **right;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
|
|
|
|
2000-06-06 03:47:54 +08:00
|
|
|
switch (ZEND_NUM_ARGS()) {
|
1999-04-22 07:28:00 +08:00
|
|
|
case 2:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(2, &left,&right) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_string_ex(left);
|
|
|
|
convert_to_string_ex(right);
|
1999-04-22 07:28:00 +08:00
|
|
|
init_num(&first);
|
|
|
|
init_num(&second);
|
|
|
|
init_num(&result);
|
1999-12-21 14:11:52 +08:00
|
|
|
str2num(&first,(*left)->value.str.val,0);
|
|
|
|
str2num(&second,(*right)->value.str.val,0);
|
1999-04-22 07:28:00 +08:00
|
|
|
switch (bc_modulo(first,second,&result, 0)) {
|
|
|
|
case 0:
|
|
|
|
return_value->value.str.val = num2str(result);
|
|
|
|
return_value->value.str.len = strlen(return_value->value.str.val);
|
|
|
|
return_value->type = IS_STRING;
|
|
|
|
break;
|
|
|
|
case -1:
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING,"Division by zero");
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
free_num(&first);
|
|
|
|
free_num(&second);
|
|
|
|
free_num(&result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ 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
|
|
|
{
|
1999-12-21 14:11:52 +08:00
|
|
|
pval **left, **right,**scale_param;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second, result;
|
1999-04-24 08:12:00 +08:00
|
|
|
int scale=bc_precision;
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2000-06-06 03:47:54 +08:00
|
|
|
switch (ZEND_NUM_ARGS()) {
|
1999-04-22 07:28:00 +08:00
|
|
|
case 2:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(2, &left,&right) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(3, &left,&right, &scale_param) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_long_ex(scale_param);
|
|
|
|
scale = (int) (*scale_param)->value.lval;
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_string_ex(left);
|
|
|
|
convert_to_string_ex(right);
|
1999-04-22 07:28:00 +08:00
|
|
|
init_num(&first);
|
|
|
|
init_num(&second);
|
|
|
|
init_num(&result);
|
1999-12-21 14:11:52 +08:00
|
|
|
str2num(&first,(*left)->value.str.val,scale);
|
|
|
|
str2num(&second,(*right)->value.str.val,scale);
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_raise (first,second,&result, scale);
|
|
|
|
return_value->value.str.val = num2str(result);
|
|
|
|
return_value->value.str.len = strlen(return_value->value.str.val);
|
|
|
|
return_value->type = IS_STRING;
|
|
|
|
free_num(&first);
|
|
|
|
free_num(&second);
|
|
|
|
free_num(&result);
|
|
|
|
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
|
|
|
{
|
1999-12-21 14:11:52 +08:00
|
|
|
pval **left,**scale_param;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num result;
|
1999-04-24 08:12:00 +08:00
|
|
|
int scale=bc_precision;
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2000-06-06 03:47:54 +08:00
|
|
|
switch (ZEND_NUM_ARGS()) {
|
1999-04-22 07:28:00 +08:00
|
|
|
case 1:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(1, &left)== FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(2, &left,&scale_param) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_long_ex(scale_param);
|
|
|
|
scale = (int) (*scale_param)->value.lval;
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_string_ex(left);
|
1999-04-22 07:28:00 +08:00
|
|
|
init_num(&result);
|
1999-12-21 14:11:52 +08:00
|
|
|
str2num(&result,(*left)->value.str.val,scale);
|
1999-04-22 07:28:00 +08:00
|
|
|
if (bc_sqrt (&result, scale) != 0) {
|
|
|
|
return_value->value.str.val = num2str(result);
|
|
|
|
return_value->value.str.len = strlen(return_value->value.str.val);
|
|
|
|
return_value->type = IS_STRING;
|
|
|
|
} else {
|
1999-08-03 03:17:14 +08:00
|
|
|
php_error(E_WARNING,"Square root of negative number");
|
1999-04-22 07:28:00 +08:00
|
|
|
}
|
|
|
|
free_num(&result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto string bccomp(string left_operand, string right_operand [, int scale])
|
|
|
|
Compares two arbitrary precision numbers */
|
1999-07-27 04:09:08 +08:00
|
|
|
PHP_FUNCTION(bccomp)
|
1999-04-22 07:28:00 +08:00
|
|
|
{
|
1999-12-21 14:11:52 +08:00
|
|
|
pval **left, **right, **scale_param;
|
1999-04-22 07:28:00 +08:00
|
|
|
bc_num first, second;
|
1999-04-24 08:12:00 +08:00
|
|
|
int scale=bc_precision;
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2000-06-06 03:47:54 +08:00
|
|
|
switch (ZEND_NUM_ARGS()) {
|
1999-04-22 07:28:00 +08:00
|
|
|
case 2:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(2, &left,&right) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
1999-12-21 14:11:52 +08:00
|
|
|
if (zend_get_parameters_ex(3, &left,&right, &scale_param) == FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_long_ex(scale_param);
|
|
|
|
scale = (int) (*scale_param)->value.lval;
|
1999-04-22 07:28:00 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_string_ex(left);
|
|
|
|
convert_to_string_ex(right);
|
1999-04-22 07:28:00 +08:00
|
|
|
init_num(&first);
|
|
|
|
init_num(&second);
|
|
|
|
|
1999-12-21 14:11:52 +08:00
|
|
|
str2num(&first,(*left)->value.str.val,scale);
|
|
|
|
str2num(&second,(*right)->value.str.val,scale);
|
1999-04-22 07:28:00 +08:00
|
|
|
return_value->value.lval = bc_compare(first,second);
|
|
|
|
return_value->type = IS_LONG;
|
|
|
|
|
|
|
|
free_num(&first);
|
|
|
|
free_num(&second);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ proto string bcscale(int scale)
|
|
|
|
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
|
|
|
{
|
1999-12-21 14:11:52 +08:00
|
|
|
pval **new_scale;
|
1999-04-22 07:28:00 +08:00
|
|
|
|
2000-06-06 03:47:54 +08:00
|
|
|
if (ZEND_NUM_ARGS()!=1 || zend_get_parameters_ex(1,&new_scale)==FAILURE) {
|
1999-04-22 07:28:00 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
1999-12-21 14:11:52 +08:00
|
|
|
convert_to_long_ex(new_scale);
|
|
|
|
bc_precision = (*new_scale)->value.lval;
|
1999-04-22 07:28:00 +08:00
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|