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)
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)
}
/* }}} */
-/* {{{ 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;
}
/* }}} */
-/* {{{ 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);
}
PHP_FUNCTION(constant);
PHP_FUNCTION(intval);
-PHP_FUNCTION(doubleval);
+PHP_FUNCTION(floatval);
PHP_FUNCTION(strval);
PHP_FUNCTION(toggle_short_open_tag);
PHP_FUNCTION(sleep);
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);