Hello Jani, for the moment probably only ofr me. But I am working on more stuff.
marcus Monday, February 4, 2008, 10:28:09 AM, you wrote: > This function was actually just for debugging. I didn't include it in by > default since I don't think it has much value to the end users..:) > Did you find some real usage for it? > --Jani > On Sun, 2008-02-03 at 14:35 +0000, Marcus Boerger wrote: >> helly Sun Feb 3 14:35:29 2008 UTC >> >> Modified files: >> /php-src/ext/standard basic_functions.c basic_functions.h >> /php-src/main php_ini.c php_ini.h >> Log: >> - Rename dump_config_hash() to get_config_hash() as it doesn't dump >> >> http://cvs.php.net/viewvc.cgi/php-src/ext/standard/basic_functions.c?r1=1.887&r2=1.888&diff_format=u >> Index: php-src/ext/standard/basic_functions.c >> diff -u php-src/ext/standard/basic_functions.c:1.887 >> php-src/ext/standard/basic_functions.c:1.888 >> --- php-src/ext/standard/basic_functions.c:1.887 Sat Jan 19 19:23:25 >> 2008 >> +++ php-src/ext/standard/basic_functions.c Sun Feb 3 14:35:29 2008 >> @@ -17,7 +17,7 @@ >> +----------------------------------------------------------------------+ >> */ >> >> -/* $Id: basic_functions.c,v 1.887 2008/01/19 19:23:25 davidc Exp $ */ >> +/* $Id: basic_functions.c,v 1.888 2008/02/03 14:35:29 helly Exp $ */ >> >> #include "php.h" >> #include "php_streams.h" >> @@ -943,11 +943,9 @@ >> 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) >> @@ -3439,9 +3437,7 @@ >> 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) >> >> @@ -6340,18 +6336,16 @@ >> } >> /* }}} */ >> >> -#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) /* {{{ */ >> { >> http://cvs.php.net/viewvc.cgi/php-src/ext/standard/basic_functions.h?r1=1.159&r2=1.160&diff_format=u >> Index: php-src/ext/standard/basic_functions.h >> diff -u php-src/ext/standard/basic_functions.h:1.159 >> php-src/ext/standard/basic_functions.h:1.160 >> --- php-src/ext/standard/basic_functions.h:1.159 Mon Dec 31 07:12:15 >> 2007 >> +++ php-src/ext/standard/basic_functions.h Sun Feb 3 14:35:29 2008 >> @@ -17,7 +17,7 @@ >> +----------------------------------------------------------------------+ >> */ >> >> -/* $Id: basic_functions.h,v 1.159 2007/12/31 07:12:15 sebastian Exp $ */ >> +/* $Id: basic_functions.h,v 1.160 2008/02/03 14:35:29 helly Exp $ */ >> >> #ifndef BASIC_FUNCTIONS_H >> #define BASIC_FUNCTIONS_H >> @@ -125,9 +125,7 @@ >> >> /* 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); >> http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.164&r2=1.165&diff_format=u >> Index: php-src/main/php_ini.c >> diff -u php-src/main/php_ini.c:1.164 php-src/main/php_ini.c:1.165 >> --- php-src/main/php_ini.c:1.164 Mon Dec 31 07:12:18 2007 >> +++ php-src/main/php_ini.c Sun Feb 3 14:35:29 2008 >> @@ -16,7 +16,7 @@ >> +----------------------------------------------------------------------+ >> */ >> >> -/* $Id: php_ini.c,v 1.164 2007/12/31 07:12:18 sebastian Exp $ */ >> +/* $Id: php_ini.c,v 1.165 2008/02/03 14:35:29 helly Exp $ */ >> >> #include "php.h" >> #include "ext/standard/info.h" >> @@ -836,13 +836,10 @@ >> } >> /* }}} */ >> >> -#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: >> http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.h?r1=1.55&r2=1.56&diff_format=u >> Index: php-src/main/php_ini.h >> diff -u php-src/main/php_ini.h:1.55 php-src/main/php_ini.h:1.56 >> --- php-src/main/php_ini.h:1.55 Mon Dec 31 07:12:18 2007 >> +++ php-src/main/php_ini.h Sun Feb 3 14:35:29 2008 >> @@ -16,7 +16,7 @@ >> +----------------------------------------------------------------------+ >> */ >> >> -/* $Id: php_ini.h,v 1.55 2007/12/31 07:12:18 sebastian Exp $ */ >> +/* $Id: php_ini.h,v 1.56 2008/02/03 14:35:29 helly Exp $ */ >> >> #ifndef PHP_INI_H >> #define PHP_INI_H >> @@ -36,9 +36,7 @@ >> 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 >> > -- > Patches/Donations: http://pecl.php.net/~jani/ Best regards, Marcus -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php