1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 18:53:33 +02:00

- MFH Rename dump_config_hash() to get_config_hash() as it doesn't dump

This commit is contained in:
Marcus Boerger
2008-02-03 14:35:59 +00:00
parent 1ecdaa3885
commit fa94dabd97
4 changed files with 10 additions and 23 deletions
+6 -12
View File
@@ -944,11 +944,9 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_parse_ini_file, 0, 0, 1)
ZEND_ARG_INFO(0, scanner_mode)
ZEND_END_ARG_INFO()
#if ZEND_DEBUG
static
ZEND_BEGIN_ARG_INFO(arginfo_dump_config_hash, 0)
ZEND_BEGIN_ARG_INFO(arginfo_get_config_hash, 0)
ZEND_END_ARG_INFO()
#endif
static
ZEND_BEGIN_ARG_INFO_EX(arginfo_import_request_variables, 0, 0, 1)
@@ -3403,9 +3401,7 @@ const zend_function_entry basic_functions[] = { /* {{{ */
PHP_FE(connection_status, arginfo_connection_status)
PHP_FE(ignore_user_abort, arginfo_ignore_user_abort)
PHP_FE(parse_ini_file, arginfo_parse_ini_file)
#if ZEND_DEBUG
PHP_FE(dump_config_hash, arginfo_dump_config_hash)
#endif
PHP_FE(get_config_hash, arginfo_get_config_hash)
PHP_FE(is_uploaded_file, arginfo_is_uploaded_file)
PHP_FE(move_uploaded_file, arginfo_move_uploaded_file)
@@ -6233,18 +6229,16 @@ PHP_FUNCTION(parse_ini_file)
}
/* }}} */
#if ZEND_DEBUG
/* {{{ proto void dump_config_hash(void)
/* {{{ proto array get_config_hash(void)
*/
PHP_FUNCTION(dump_config_hash)
PHP_FUNCTION(get_config_hash)
{
HashTable hash = get_configuration_hash();
HashTable *hash = php_ini_get_configuration_hash();
array_init(return_value);
zend_hash_apply_with_arguments(&hash, (apply_func_args_t) add_config_entry_cb, 1, return_value TSRMLS_CC);
zend_hash_apply_with_arguments(hash, (apply_func_args_t) add_config_entry_cb, 1, return_value TSRMLS_CC);
}
/* }}} */
#endif
static int copy_request_variable(void *pDest, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */
{
-2
View File
@@ -125,9 +125,7 @@ PHP_FUNCTION(move_uploaded_file);
/* From the INI parser */
PHP_FUNCTION(parse_ini_file);
#if ZEND_DEBUG
PHP_FUNCTION(dump_config_hash);
#endif
PHP_FUNCTION(str_rot13);
PHP_FUNCTION(stream_get_filters);