diff options
Diffstat (limited to 'ext/standard/basic_functions.c')
| -rw-r--r-- | ext/standard/basic_functions.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index ba4569212f..35f5159edd 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -534,7 +534,6 @@ zend_function_entry basic_functions[] = { PHP_FE(is_numeric, NULL) PHP_FE(is_string, NULL) PHP_FE(is_unicode, NULL) - PHP_FE(is_binary, NULL) PHP_FE(is_buffer, NULL) PHP_FE(is_array, NULL) PHP_FE(is_object, NULL) @@ -1425,7 +1424,7 @@ PHP_FUNCTION(getenv) ptr = getenv(str); } if (ptr) { - RETURN_STRING(ptr, 1); + RETURN_RT_STRING(ptr, 1); } RETURN_FALSE; } @@ -2572,7 +2571,7 @@ PHP_FUNCTION(ini_get) RETURN_FALSE; } - RETURN_STRING(str, 1); + RETURN_RT_STRING(str, 1); } /* }}} */ |
