]> granicus.if.org Git - php/commitdiff
renamed doubleval to floatval and made doubleval an alias to floatval
authorHartmut Holzgraefe <hholzgra@php.net>
Fri, 21 Sep 2001 21:29:14 +0000 (21:29 +0000)
committerHartmut Holzgraefe <hholzgra@php.net>
Fri, 21 Sep 2001 21:29:14 +0000 (21:29 +0000)
made is_float the function entry and is_double the alias

ext/standard/basic_functions.c
ext/standard/basic_functions.h

index 24420cd6c16509149c620fee11e8294f41ad5b2f..b5e991c3f021cf5467cdc047e47a20dcf12c5cd7 100644 (file)
@@ -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);
 }
index afdde1c54dcdd8948ef1933fc95c949d30e9fa54..89bfe7af4e39d42516d715f3554ec940b8f8bdb9 100644 (file)
@@ -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);