- 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,8 +530,9 @@ zend_function_entry basic_functions[] = {
PHP_FALIAS(is_double, is_float, NULL)
PHP_FALIAS(is_real, is_float, NULL)
PHP_FE(is_numeric, NULL)
PHP_FE(is_binary, NULL)
PHP_FE(is_string, NULL)
PHP_FE(is_unicode, NULL)
PHP_FE(is_unicode, NULL)
PHP_FE(is_buffer, NULL)
PHP_FE(is_array, NULL)
PHP_FE(is_object, NULL)

View File

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