- Actually make this is_binary() too.

This commit is contained in:
Derick Rethans 2006-03-17 14:53:57 +00:00
parent 2ffc93140d
commit c6b425432a
2 changed files with 3 additions and 1 deletions

View file

@ -530,6 +530,7 @@ zend_function_entry basic_functions[] = {
PHP_FALIAS(is_double, is_float, NULL) PHP_FALIAS(is_double, is_float, NULL)
PHP_FALIAS(is_real, is_float, NULL) PHP_FALIAS(is_real, is_float, NULL)
PHP_FE(is_numeric, NULL) PHP_FE(is_numeric, NULL)
PHP_FE(is_binary, NULL)
PHP_FE(is_string, NULL) PHP_FE(is_string, NULL)
PHP_FE(is_unicode, NULL) PHP_FE(is_unicode, NULL)
PHP_FE(is_buffer, NULL) PHP_FE(is_buffer, NULL)

View file

@ -32,6 +32,7 @@ PHP_FUNCTION(is_bool);
PHP_FUNCTION(is_long); PHP_FUNCTION(is_long);
PHP_FUNCTION(is_float); PHP_FUNCTION(is_float);
PHP_FUNCTION(is_numeric); PHP_FUNCTION(is_numeric);
PHP_FUNCTION(is_binary);
PHP_FUNCTION(is_string); PHP_FUNCTION(is_string);
PHP_FUNCTION(is_unicode); PHP_FUNCTION(is_unicode);
PHP_FUNCTION(is_binary); PHP_FUNCTION(is_binary);