1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01: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

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) /* {{{ */
{

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);

View File

@@ -840,13 +840,10 @@ PHPAPI int cfg_get_string(char *varname, char **result)
}
/* }}} */
#if ZEND_DEBUG
#include "php_ini.h"
PHPAPI HashTable get_configuration_hash(void)
PHPAPI HashTable* php_ini_get_configuration_hash(void) /* {{{ */
{
return configuration_hash;
}
#endif
return &configuration_hash;
} /* }}} */
/*
* Local variables:

View File

@@ -36,9 +36,7 @@ PHPAPI int php_parse_user_ini_file(char *dirname, char *ini_filename, HashTable
PHPAPI void php_ini_activate_config(HashTable *source_hash, int modify_type, int stage TSRMLS_DC);
PHPAPI void php_ini_activate_per_dir_config(char *path, uint path_len TSRMLS_DC);
PHPAPI void php_ini_activate_per_host_config(char *host, uint host_len TSRMLS_DC);
#if ZEND_DEBUG
PHPAPI HashTable get_configuration_hash(void);
#endif
PHPAPI HashTable* php_in_get_configuration_hash(void);
END_EXTERN_C()
#define PHP_INI_USER ZEND_INI_USER