Searched refs:configuration_hash (Results 1 – 5 of 5) sorted by relevance
/PHP-8.4/main/ |
H A D | php_ini.c | 60 static HashTable configuration_hash; variable 419 zend_hash_init(&configuration_hash, 8, NULL, config_zval_dtor, 1); in php_init_config() 422 sapi_module.ini_defaults(&configuration_hash); in php_init_config() 734 zend_hash_destroy(&configuration_hash); in php_shutdown_config() 853 if ((tmp2 = zend_hash_str_find(&configuration_hash, path, strlen(path))) != NULL) { 877 if ((tmp = zend_hash_str_find(&configuration_hash, host, host_len)) != NULL) { 887 return zend_hash_find(&configuration_hash, name); 894 return zend_hash_str_find(&configuration_hash, name, name_length); 903 if ((tmp = zend_hash_str_find(&configuration_hash, varname, strlen(varname))) == NULL) { 917 if ((tmp = zend_hash_str_find(&configuration_hash, varname, strlen(varname))) == NULL) { [all …]
|
H A D | SAPI.h | 284 void (*ini_defaults)(HashTable *configuration_hash);
|
/PHP-8.4/sapi/embed/ |
H A D | README.md | 128 static void example_ini_defaults(HashTable *configuration_hash) 132 zend_hash_str_update(configuration_hash, ZEND_STRL("error_prepend_string"), &ini_value);
|
/PHP-8.4/sapi/cli/ |
H A D | php_cli.c | 406 zend_hash_str_update(configuration_hash, name, sizeof(name)-1, &tmp);\ 408 static void sapi_cli_ini_defaults(HashTable *configuration_hash) in sapi_cli_ini_defaults() argument
|
/PHP-8.4/sapi/litespeed/ |
H A D | lsapi_main.c | 112 zend_hash_update(configuration_hash, name, sizeof(name), tmp, sizeof(zval), (void**)&entry);\ 115 static void sapi_lsapi_ini_defaults(HashTable *configuration_hash) in sapi_lsapi_ini_defaults() argument
|
Completed in 18 milliseconds