php-src/ext/bcmath/bcmath.c

558 lines
14 KiB
C
Raw Normal View History

1999-04-21 23:28:00 +00:00
/*
+----------------------------------------------------------------------+
2001-12-11 15:32:16 +00:00
| PHP Version 4 |
1999-04-21 23:28:00 +00:00
+----------------------------------------------------------------------+
2002-12-31 16:08:15 +00:00
| Copyright (c) 1997-2003 The PHP Group |
1999-04-21 23:28:00 +00:00
+----------------------------------------------------------------------+
| This source file is subject to version 3.0 of the PHP license, |
1999-07-16 13:13:16 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_0.txt. |
1999-07-16 13:13:16 +00: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-21 23:28:00 +00:00
+----------------------------------------------------------------------+
2002-02-28 08:29:35 +00:00
| Author: Andi Gutmans <andi@zend.com> |
1999-04-21 23:28:00 +00:00
+----------------------------------------------------------------------+
*/
/* $Id$ */
1999-04-21 23:28:00 +00:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
1999-04-21 23:28:00 +00:00
#include "php.h"
#if WITH_BCMATH
2000-10-08 11:45:18 +00:00
#include "ext/standard/info.h"
#include "php_bcmath.h"
#include "libbcmath/src/bcmath.h"
1999-04-21 23:28:00 +00:00
ZEND_DECLARE_MODULE_GLOBALS(bcmath);
1999-04-21 23:28:00 +00:00
function_entry bcmath_functions[] = {
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)
PHP_FE(bcpowmod, NULL)
1999-04-21 23:28:00 +00:00
{NULL, NULL, NULL}
};
zend_module_entry bcmath_module_entry = {
STANDARD_MODULE_HEADER,
2000-10-08 11:45:18 +00:00
"bcmath",
bcmath_functions,
#if ZTS
PHP_MODULE_STARTUP_N(bcmath),
#else
2000-11-18 02:59:31 +00:00
NULL,
#endif
NULL,
PHP_RINIT(bcmath),
PHP_RSHUTDOWN(bcmath),
2000-10-08 11:45:18 +00:00
PHP_MINFO(bcmath),
NO_VERSION_YET,
2000-10-08 11:45:18 +00:00
STANDARD_MODULE_PROPERTIES
1999-04-21 23:28:00 +00:00
};
2000-05-23 09:33:51 +00:00
#ifdef COMPILE_DL_BCMATH
ZEND_GET_MODULE(bcmath)
1999-04-21 23:28:00 +00:00
#endif
#ifndef THREAD_SAFE
static long bc_precision;
#endif
#if ZTS
PHP_MODULE_STARTUP_D(bcmath)
{
zend_bcmath_globals *bcmath_globals;
ts_allocate_id(&bcmath_globals_id, sizeof(zend_bcmath_globals), NULL, NULL);
bcmath_globals = ts_resource(bcmath_globals_id);
return SUCCESS;
}
#endif
PHP_RSHUTDOWN_FUNCTION(bcmath)
1999-04-21 23:28:00 +00:00
{
bc_free_num(&BCG(_zero_));
bc_free_num(&BCG(_one_));
bc_free_num(&BCG(_two_));
1999-04-21 23:28:00 +00:00
return SUCCESS;
}
2000-11-18 02:59:31 +00:00
PHP_RINIT_FUNCTION(bcmath)
{
2003-03-20 00:22:57 +00:00
if (cfg_get_long("bcmath.scale", &bc_precision) == FAILURE) {
bc_precision = 0;
2000-11-18 02:59:31 +00:00
}
if (bc_precision < 0) {
bc_precision = 0;
}
bc_init_numbers(TSRMLS_C);
2000-11-18 02:59:31 +00:00
return SUCCESS;
}
2000-10-08 11:45:18 +00:00
PHP_MINFO_FUNCTION(bcmath)
{
php_info_print_table_start();
php_info_print_table_row(2, "BCMath support", "enabled");
php_info_print_table_end();
2000-10-08 11:45:18 +00:00
}
/* {{{ php_str2num
Convert to bc_num detecting scale */
static void php_str2num(bc_num *num, char *str TSRMLS_DC)
{
char *p;
if (!(p = strchr(str, '.'))) {
bc_str2num(num, str, 0 TSRMLS_CC);
return;
}
bc_str2num(num, str, strlen(p+1) TSRMLS_CC);
}
/* }}} */
1999-04-21 23:28:00 +00:00
/* {{{ proto string bcadd(string left_operand, string right_operand [, int scale])
Returns the sum of two arbitrary precision numbers */
PHP_FUNCTION(bcadd)
1999-04-21 23:28:00 +00:00
{
2003-03-20 00:22:57 +00:00
zval **left, **right, **scale_param;
1999-04-21 23:28:00 +00:00
bc_num first, second, result;
2003-03-20 00:22:57 +00:00
int scale = bc_precision;
1999-04-21 23:28:00 +00:00
switch (ZEND_NUM_ARGS()) {
1999-04-21 23:28:00 +00:00
case 2:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(2, &left, &right) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-04-21 23:28:00 +00:00
break;
case 3:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(3, &left, &right, &scale_param) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-12-21 06:11:52 +00:00
convert_to_long_ex(scale_param);
scale = (int) (Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
1999-04-21 23:28:00 +00:00
break;
default:
WRONG_PARAM_COUNT;
break;
}
1999-12-21 06:11:52 +00:00
convert_to_string_ex(left);
convert_to_string_ex(right);
bc_init_num(&first TSRMLS_CC);
bc_init_num(&second TSRMLS_CC);
bc_init_num(&result TSRMLS_CC);
2003-02-04 21:01:54 +00:00
php_str2num(&first, Z_STRVAL_PP(left) TSRMLS_CC);
php_str2num(&second, Z_STRVAL_PP(right) TSRMLS_CC);
2001-08-11 16:39:07 +00:00
bc_add (first, second, &result, scale);
2003-03-20 00:22:57 +00:00
if (result->n_scale > scale) {
result->n_scale = scale;
2003-03-20 00:22:57 +00:00
}
Z_STRVAL_P(return_value) = bc_num2str(result);
Z_STRLEN_P(return_value) = strlen(Z_STRVAL_P(return_value));
Z_TYPE_P(return_value) = IS_STRING;
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&result);
1999-04-21 23:28:00 +00:00
return;
}
/* }}} */
/* {{{ proto string bcsub(string left_operand, string right_operand [, int scale])
2000-02-22 15:48:43 +00:00
Returns the difference between two arbitrary precision numbers */
PHP_FUNCTION(bcsub)
1999-04-21 23:28:00 +00:00
{
2003-03-20 00:22:57 +00:00
zval **left, **right, **scale_param;
1999-04-21 23:28:00 +00:00
bc_num first, second, result;
2003-03-20 00:22:57 +00:00
int scale = bc_precision;
1999-04-21 23:28:00 +00:00
switch (ZEND_NUM_ARGS()) {
1999-04-21 23:28:00 +00:00
case 2:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(2, &left, &right) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-04-21 23:28:00 +00:00
break;
case 3:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(3, &left, &right, &scale_param) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-12-21 06:11:52 +00:00
convert_to_long_ex(scale_param);
scale = (int) (Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
1999-04-21 23:28:00 +00:00
break;
default:
WRONG_PARAM_COUNT;
break;
}
1999-12-21 06:11:52 +00:00
convert_to_string_ex(left);
convert_to_string_ex(right);
bc_init_num(&first TSRMLS_CC);
bc_init_num(&second TSRMLS_CC);
bc_init_num(&result TSRMLS_CC);
2003-02-04 21:01:54 +00:00
php_str2num(&first, Z_STRVAL_PP(left) TSRMLS_CC);
php_str2num(&second, Z_STRVAL_PP(right) TSRMLS_CC);
2001-08-11 16:39:07 +00:00
bc_sub (first, second, &result, scale);
2003-03-20 00:22:57 +00:00
if (result->n_scale > scale) {
result->n_scale = scale;
2003-03-20 00:22:57 +00:00
}
Z_STRVAL_P(return_value) = bc_num2str(result);
Z_STRLEN_P(return_value) = strlen(Z_STRVAL_P(return_value));
Z_TYPE_P(return_value) = IS_STRING;
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&result);
1999-04-21 23:28:00 +00:00
return;
}
/* }}} */
/* {{{ proto string bcmul(string left_operand, string right_operand [, int scale])
Returns the multiplication of two arbitrary precision numbers */
PHP_FUNCTION(bcmul)
1999-04-21 23:28:00 +00:00
{
2003-03-20 00:22:57 +00:00
zval **left, **right, **scale_param;
1999-04-21 23:28:00 +00:00
bc_num first, second, result;
2003-03-20 00:22:57 +00:00
int scale = bc_precision;
1999-04-21 23:28:00 +00:00
switch (ZEND_NUM_ARGS()) {
1999-04-21 23:28:00 +00:00
case 2:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(2, &left, &right) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-04-21 23:28:00 +00:00
break;
case 3:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(3, &left, &right, &scale_param) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-12-21 06:11:52 +00:00
convert_to_long_ex(scale_param);
scale = (int) (Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
1999-04-21 23:28:00 +00:00
break;
default:
WRONG_PARAM_COUNT;
break;
}
1999-12-21 06:11:52 +00:00
convert_to_string_ex(left);
convert_to_string_ex(right);
bc_init_num(&first TSRMLS_CC);
bc_init_num(&second TSRMLS_CC);
bc_init_num(&result TSRMLS_CC);
2003-02-04 21:01:54 +00:00
php_str2num(&first, Z_STRVAL_PP(left) TSRMLS_CC);
php_str2num(&second, Z_STRVAL_PP(right) TSRMLS_CC);
bc_multiply (first, second, &result, scale TSRMLS_CC);
2003-03-20 00:22:57 +00:00
if (result->n_scale > scale) {
result->n_scale = scale;
2003-03-20 00:22:57 +00:00
}
Z_STRVAL_P(return_value) = bc_num2str(result);
Z_STRLEN_P(return_value) = strlen(Z_STRVAL_P(return_value));
Z_TYPE_P(return_value) = IS_STRING;
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&result);
1999-04-21 23:28:00 +00:00
return;
}
/* }}} */
/* {{{ proto string bcdiv(string left_operand, string right_operand [, int scale])
Returns the quotient of two arbitrary precision numbers (division) */
PHP_FUNCTION(bcdiv)
1999-04-21 23:28:00 +00:00
{
2003-03-20 00:22:57 +00:00
zval **left, **right, **scale_param;
1999-04-21 23:28:00 +00:00
bc_num first, second, result;
2003-03-20 00:22:57 +00:00
int scale = bc_precision;
1999-04-21 23:28:00 +00:00
switch (ZEND_NUM_ARGS()) {
1999-04-21 23:28:00 +00:00
case 2:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(2, &left, &right) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-04-21 23:28:00 +00:00
break;
case 3:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(3, &left, &right, &scale_param) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-12-21 06:11:52 +00:00
convert_to_long_ex(scale_param);
scale = (int) (Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
1999-04-21 23:28:00 +00:00
break;
default:
WRONG_PARAM_COUNT;
break;
}
1999-12-21 06:11:52 +00:00
convert_to_string_ex(left);
convert_to_string_ex(right);
bc_init_num(&first TSRMLS_CC);
bc_init_num(&second TSRMLS_CC);
bc_init_num(&result TSRMLS_CC);
2003-02-04 21:01:54 +00:00
php_str2num(&first, Z_STRVAL_PP(left) TSRMLS_CC);
php_str2num(&second, Z_STRVAL_PP(right) TSRMLS_CC);
switch (bc_divide(first, second, &result, scale TSRMLS_CC)) {
1999-04-21 23:28:00 +00:00
case 0: /* OK */
2003-03-20 00:22:57 +00:00
if (result->n_scale > scale) {
result->n_scale = scale;
2003-03-20 00:22:57 +00:00
}
Z_STRVAL_P(return_value) = bc_num2str(result);
Z_STRLEN_P(return_value) = strlen(Z_STRVAL_P(return_value));
Z_TYPE_P(return_value) = IS_STRING;
1999-04-21 23:28:00 +00:00
break;
case -1: /* division by zero */
2002-12-05 21:53:25 +00:00
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Division by zero");
1999-04-21 23:28:00 +00:00
break;
}
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&result);
1999-04-21 23:28:00 +00:00
return;
}
/* }}} */
/* {{{ proto string bcmod(string left_operand, string right_operand)
Returns the modulus of the two arbitrary precision operands */
PHP_FUNCTION(bcmod)
1999-04-21 23:28:00 +00:00
{
2003-03-20 00:22:57 +00:00
zval **left, **right;
1999-04-21 23:28:00 +00:00
bc_num first, second, result;
switch (ZEND_NUM_ARGS()) {
1999-04-21 23:28:00 +00:00
case 2:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(2, &left, &right) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-04-21 23:28:00 +00:00
break;
default:
WRONG_PARAM_COUNT;
break;
}
1999-12-21 06:11:52 +00:00
convert_to_string_ex(left);
convert_to_string_ex(right);
bc_init_num(&first TSRMLS_CC);
bc_init_num(&second TSRMLS_CC);
bc_init_num(&result TSRMLS_CC);
bc_str2num(&first, Z_STRVAL_PP(left), 0 TSRMLS_CC);
bc_str2num(&second, Z_STRVAL_PP(right), 0 TSRMLS_CC);
switch (bc_modulo(first, second, &result, 0 TSRMLS_CC)) {
1999-04-21 23:28:00 +00:00
case 0:
Z_STRVAL_P(return_value) = bc_num2str(result);
Z_STRLEN_P(return_value) = strlen(Z_STRVAL_P(return_value));
Z_TYPE_P(return_value) = IS_STRING;
1999-04-21 23:28:00 +00:00
break;
case -1:
2002-12-05 21:53:25 +00:00
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Division by zero");
1999-04-21 23:28:00 +00:00
break;
}
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&result);
1999-04-21 23:28:00 +00:00
return;
}
/* }}} */
/* {{{ proto string bcpowmod(string x, string y, string mod [, int scale])
Returns the value of an arbitrary precision number raised to the power of another reduced by a modulous */
PHP_FUNCTION(bcpowmod)
{
char *left, *right, *modulous;
int left_len, right_len, modulous_len;
bc_num first, second, mod, result;
2003-03-20 00:22:57 +00:00
int scale = bc_precision;
2002-12-10 19:28:04 +00:00
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sss|l", &left, &left_len, &right, &right_len, &modulous, &modulous_len, &scale) == FAILURE) {
WRONG_PARAM_COUNT;
}
bc_init_num(&first TSRMLS_CC);
bc_init_num(&second TSRMLS_CC);
bc_init_num(&mod TSRMLS_CC);
bc_init_num(&result TSRMLS_CC);
2003-02-04 21:01:54 +00:00
php_str2num(&first, left TSRMLS_CC);
php_str2num(&second, right TSRMLS_CC);
php_str2num(&mod, modulous TSRMLS_CC);
bc_raisemod(first, second, mod, &result, scale TSRMLS_CC);
2003-03-20 00:22:57 +00:00
if (result->n_scale > scale) {
result->n_scale = scale;
2003-03-20 00:22:57 +00:00
}
Z_STRVAL_P(return_value) = bc_num2str(result);
Z_STRLEN_P(return_value) = strlen(Z_STRVAL_P(return_value));
Z_TYPE_P(return_value) = IS_STRING;
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&mod);
bc_free_num(&result);
return;
}
/* }}} */
1999-04-21 23:28:00 +00:00
/* {{{ proto string bcpow(string x, string y [, int scale])
Returns the value of an arbitrary precision number raised to the power of another */
PHP_FUNCTION(bcpow)
1999-04-21 23:28:00 +00:00
{
2003-03-20 00:22:57 +00:00
zval **left, **right, **scale_param;
1999-04-21 23:28:00 +00:00
bc_num first, second, result;
2003-03-20 00:22:57 +00:00
int scale = bc_precision;
1999-04-21 23:28:00 +00:00
switch (ZEND_NUM_ARGS()) {
1999-04-21 23:28:00 +00:00
case 2:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(2, &left, &right) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-04-21 23:28:00 +00:00
break;
case 3:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(3, &left, &right, &scale_param) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-12-21 06:11:52 +00:00
convert_to_long_ex(scale_param);
scale = (int) (Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
1999-04-21 23:28:00 +00:00
break;
default:
WRONG_PARAM_COUNT;
break;
}
1999-12-21 06:11:52 +00:00
convert_to_string_ex(left);
convert_to_string_ex(right);
bc_init_num(&first TSRMLS_CC);
bc_init_num(&second TSRMLS_CC);
bc_init_num(&result TSRMLS_CC);
2003-02-04 21:01:54 +00:00
php_str2num(&first, Z_STRVAL_PP(left) TSRMLS_CC);
php_str2num(&second, Z_STRVAL_PP(right) TSRMLS_CC);
bc_raise (first, second, &result, scale TSRMLS_CC);
2003-03-20 00:22:57 +00:00
if (result->n_scale > scale) {
result->n_scale = scale;
2003-03-20 00:22:57 +00:00
}
Z_STRVAL_P(return_value) = bc_num2str(result);
Z_STRLEN_P(return_value) = strlen(Z_STRVAL_P(return_value));
Z_TYPE_P(return_value) = IS_STRING;
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&result);
1999-04-21 23:28:00 +00:00
return;
}
/* }}} */
/* {{{ proto string bcsqrt(string operand [, int scale])
Returns the square root of an arbitray precision number */
PHP_FUNCTION(bcsqrt)
1999-04-21 23:28:00 +00:00
{
2003-03-20 00:22:57 +00:00
zval **left, **scale_param;
1999-04-21 23:28:00 +00:00
bc_num result;
2003-03-20 00:22:57 +00:00
int scale = bc_precision;
1999-04-21 23:28:00 +00:00
switch (ZEND_NUM_ARGS()) {
1999-04-21 23:28:00 +00:00
case 1:
2003-03-20 00:22:57 +00:00
if (zend_get_parameters_ex(1, &left) == FAILURE) {
WRONG_PARAM_COUNT;
}
1999-04-21 23:28:00 +00:00
break;
case 2:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(2, &left, &scale_param) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-12-21 06:11:52 +00:00
convert_to_long_ex(scale_param);
scale = (int) (Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
1999-04-21 23:28:00 +00:00
break;
default:
WRONG_PARAM_COUNT;
break;
}
1999-12-21 06:11:52 +00:00
convert_to_string_ex(left);
bc_init_num(&result TSRMLS_CC);
2003-02-04 21:01:54 +00:00
php_str2num(&result, Z_STRVAL_PP(left) TSRMLS_CC);
if (bc_sqrt (&result, scale TSRMLS_CC) != 0) {
2003-03-20 00:22:57 +00:00
if (result->n_scale > scale) {
result->n_scale = scale;
2003-03-20 00:22:57 +00:00
}
Z_STRVAL_P(return_value) = bc_num2str(result);
Z_STRLEN_P(return_value) = strlen(Z_STRVAL_P(return_value));
Z_TYPE_P(return_value) = IS_STRING;
1999-04-21 23:28:00 +00:00
} else {
2002-12-05 21:53:25 +00:00
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Square root of negative number");
1999-04-21 23:28:00 +00:00
}
bc_free_num(&result);
1999-04-21 23:28:00 +00:00
return;
}
/* }}} */
2003-06-12 12:21:33 +00:00
/* {{{ proto int bccomp(string left_operand, string right_operand [, int scale])
1999-04-21 23:28:00 +00:00
Compares two arbitrary precision numbers */
PHP_FUNCTION(bccomp)
1999-04-21 23:28:00 +00:00
{
2003-03-20 00:22:57 +00:00
zval **left, **right, **scale_param;
1999-04-21 23:28:00 +00:00
bc_num first, second;
2003-03-20 00:22:57 +00:00
int scale = bc_precision;
1999-04-21 23:28:00 +00:00
switch (ZEND_NUM_ARGS()) {
1999-04-21 23:28:00 +00:00
case 2:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(2, &left, &right) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-04-21 23:28:00 +00:00
break;
case 3:
2001-08-11 16:39:07 +00:00
if (zend_get_parameters_ex(3, &left, &right, &scale_param) == FAILURE) {
2003-03-20 00:22:57 +00:00
WRONG_PARAM_COUNT;
}
1999-12-21 06:11:52 +00:00
convert_to_long_ex(scale_param);
scale = (int) (Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
1999-04-21 23:28:00 +00:00
break;
default:
WRONG_PARAM_COUNT;
break;
}
1999-12-21 06:11:52 +00:00
convert_to_string_ex(left);
convert_to_string_ex(right);
bc_init_num(&first TSRMLS_CC);
bc_init_num(&second TSRMLS_CC);
1999-04-21 23:28:00 +00:00
bc_str2num(&first, Z_STRVAL_PP(left), scale TSRMLS_CC);
bc_str2num(&second, Z_STRVAL_PP(right), scale TSRMLS_CC);
Z_LVAL_P(return_value) = bc_compare(first, second);
Z_TYPE_P(return_value) = IS_LONG;
1999-04-21 23:28:00 +00:00
bc_free_num(&first);
bc_free_num(&second);
1999-04-21 23:28:00 +00:00
return;
}
/* }}} */
2003-06-12 12:21:33 +00:00
/* {{{ proto bool bcscale(int scale)
1999-04-21 23:28:00 +00:00
Sets default scale parameter for all bc math functions */
PHP_FUNCTION(bcscale)
1999-04-21 23:28:00 +00:00
{
2003-03-20 00:22:57 +00:00
zval **new_scale;
1999-04-21 23:28:00 +00:00
2003-03-20 00:22:57 +00:00
if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &new_scale) == FAILURE) {
1999-04-21 23:28:00 +00:00
WRONG_PARAM_COUNT;
}
1999-12-21 06:11:52 +00:00
convert_to_long_ex(new_scale);
bc_precision = (Z_LVAL_PP(new_scale) < 0) ? 0 : Z_LVAL_PP(new_scale);
2003-04-02 23:51:52 +00:00
1999-04-21 23:28:00 +00:00
RETURN_TRUE;
}
/* }}} */
#endif
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: sw=4 ts=4 fdm=marker
* vim<600: sw=4 ts=4
1999-04-21 23:28:00 +00:00
*/