From: Hartmut Holzgraefe Date: Fri, 21 Sep 2001 21:29:14 +0000 (+0000) Subject: renamed doubleval to floatval and made doubleval an alias to floatval X-Git-Tag: PRE_SUBST_Z_MACROS~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c275bf793f70ad2a38bbf4a0f7ad12fecaca095;p=php renamed doubleval to floatval and made doubleval an alias to floatval made is_float the function entry and is_double the alias --- diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 24420cd6c1..b5e991c3f0 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -249,7 +249,8 @@ void test_class_startup(void) function_entry basic_functions[] = { PHP_FE(constant, NULL) PHP_FE(intval, NULL) - PHP_FE(doubleval, NULL) + PHP_FE(floatval, NULL) + PHP_FALIAS(doubleval, floatval, NULL) PHP_FE(strval, NULL) PHP_FE(bin2hex, NULL) PHP_FE(sleep, NULL) @@ -510,11 +511,11 @@ function_entry basic_functions[] = { PHP_FE(is_resource, NULL) PHP_FE(is_bool, NULL) PHP_FE(is_long, NULL) - PHP_FE(is_double, NULL) + PHP_FE(is_float, NULL) PHP_FALIAS(is_int, is_long, NULL) PHP_FALIAS(is_integer, is_long, NULL) - PHP_FALIAS(is_float, is_double, NULL) - PHP_FALIAS(is_real, is_double, NULL) + PHP_FALIAS(is_double, is_float, NULL) + PHP_FALIAS(is_real, is_float, NULL) PHP_FE(is_numeric, NULL) PHP_FE(is_string, NULL) PHP_FE(is_array, NULL) @@ -1295,9 +1296,9 @@ PHP_FUNCTION(intval) } /* }}} */ -/* {{{ proto double doubleval(mixed var) - Get the double-precision value of a variable */ -PHP_FUNCTION(doubleval) +/* {{{ proto double floatval(mixed var) + Get the float value of a variable */ +PHP_FUNCTION(floatval) { pval **num; @@ -1577,9 +1578,9 @@ PHP_FUNCTION(is_long) } /* }}} */ -/* {{{ proto bool is_double(mixed var) - Returns true if variable is a double */ -PHP_FUNCTION(is_double) +/* {{{ proto bool is_float(mixed var) + Returns true if variable is float point*/ +PHP_FUNCTION(is_float) { php_is_type(INTERNAL_FUNCTION_PARAM_PASSTHRU, IS_DOUBLE); } diff --git a/ext/standard/basic_functions.h b/ext/standard/basic_functions.h index afdde1c54d..89bfe7af4e 100644 --- a/ext/standard/basic_functions.h +++ b/ext/standard/basic_functions.h @@ -40,7 +40,7 @@ PHP_MINFO_FUNCTION(basic); PHP_FUNCTION(constant); PHP_FUNCTION(intval); -PHP_FUNCTION(doubleval); +PHP_FUNCTION(floatval); PHP_FUNCTION(strval); PHP_FUNCTION(toggle_short_open_tag); PHP_FUNCTION(sleep); @@ -68,7 +68,7 @@ PHP_FUNCTION(is_null); PHP_FUNCTION(is_resource); PHP_FUNCTION(is_bool); PHP_FUNCTION(is_long); -PHP_FUNCTION(is_double); +PHP_FUNCTION(is_float); PHP_FUNCTION(is_numeric); PHP_FUNCTION(is_string); PHP_FUNCTION(is_array);