diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2001-09-21 21:29:14 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2001-09-21 21:29:14 +0000 |
commit | 2c275bf793f70ad2a38bbf4a0f7ad12fecaca095 (patch) | |
tree | 9bb29bbee745141bc323fdfea18cff9f944b22f9 /ext/standard/basic_functions.h | |
parent | 4582d3851936bc0a63238defcd8b729a6bcf52d3 (diff) | |
download | php-git-2c275bf793f70ad2a38bbf4a0f7ad12fecaca095.tar.gz |
renamed doubleval to floatval and made doubleval an alias to floatval
made is_float the function entry and is_double the alias
Diffstat (limited to 'ext/standard/basic_functions.h')
-rw-r--r-- | ext/standard/basic_functions.h | 4 |
1 files changed, 2 insertions, 2 deletions
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); |