]> granicus.if.org Git - php/commitdiff
- MFH Rename it again
authorMarcus Boerger <helly@php.net>
Sun, 3 Feb 2008 14:45:00 +0000 (14:45 +0000)
committerMarcus Boerger <helly@php.net>
Sun, 3 Feb 2008 14:45:00 +0000 (14:45 +0000)
[DOC]
- MFH Add config_get_hash()

ext/standard/basic_functions.c
ext/standard/basic_functions.h

index d8539cd1cde7192b12dce6be46545d13a073ad41..6475116e3bec81e08e822c8b18c3da8021093a2d 100644 (file)
@@ -945,7 +945,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_parse_ini_file, 0, 0, 1)
 ZEND_END_ARG_INFO()
 
 static
-ZEND_BEGIN_ARG_INFO(arginfo_get_config_hash, 0)
+ZEND_BEGIN_ARG_INFO(arginfo_config_get_hash, 0)
 ZEND_END_ARG_INFO()
 
 static
@@ -3401,7 +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)
-       PHP_FE(get_config_hash,                                                                                                 arginfo_get_config_hash)
+       PHP_FE(config_get_hash,                                                                                                 arginfo_config_get_hash)
        PHP_FE(is_uploaded_file,                                                                                                arginfo_is_uploaded_file)
        PHP_FE(move_uploaded_file,                                                                                              arginfo_move_uploaded_file)
 
@@ -6229,9 +6229,9 @@ PHP_FUNCTION(parse_ini_file)
 }
 /* }}} */
 
-/* {{{ proto array get_config_hash(void)
- */
-PHP_FUNCTION(get_config_hash)
+/* {{{ proto array config_get_hash(void)
Return all configuration valus as an array */
+PHP_FUNCTION(config_get_hash)
 {
        HashTable *hash = php_ini_get_configuration_hash();
 
index 2b4ed9967d7584592f9da782963a36864a2873e3..23e7e87701f0dea93f2c64124ab271415a83c288 100644 (file)
@@ -125,7 +125,7 @@ PHP_FUNCTION(move_uploaded_file);
 
 /* From the INI parser */
 PHP_FUNCTION(parse_ini_file);
-PHP_FUNCTION(dump_config_hash);
+PHP_FUNCTION(config_get_hash);
 
 PHP_FUNCTION(str_rot13);
 PHP_FUNCTION(stream_get_filters);