Searched refs:ini_settings (Results 1 – 3 of 3) sorted by relevance
/PHP-5.3/ |
H A D | run-tests.php | 1439 $ini_settings = array(); 1442 settings2array($ini_overwrites, $ini_settings); 1465 settings2params($ini_settings); 2238 function settings2array($settings, &$ini_settings) argument 2249 if (!isset($ini_settings[$name])) { 2250 $ini_settings[$name] = array(); 2253 $ini_settings[$name][] = $value; 2256 $ini_settings[$name] = $value; 2262 function settings2params(&$ini_settings) argument 2266 foreach($ini_settings as $name => $value) { [all …]
|
H A D | server-tests.php | 101 function settings2array($settings, &$ini_settings) argument 108 $ini_settings[$name] = $value; 113 function settings2params(&$ini_settings) argument 116 if (count($ini_settings)) { 117 foreach($ini_settings as $name => $value) { 1056 $ini_settings = $this->ini_overwrites; 1060 settings2array(preg_split( "/[\n\r]+/", $section_text['INI']), $ini_settings); 1062 return $ini_settings;
|
/PHP-5.3/sapi/apache_hooks/ |
H A D | mod_php5.c | 63 HashTable *ini_settings; member 826 zend_hash_destroy(conf->ini_settings); in php_destroy_per_dir_info() 835 free(conf->ini_settings); in php_destroy_per_dir_info() 861 conf->ini_settings = (HashTable *) malloc(sizeof(HashTable)); in php_create_dir() 862 zend_hash_init_ex(conf->ini_settings, 5, NULL, (void (*)(void *)) destroy_per_dir_entry, 1, 0); in php_create_dir() 885 …zend_hash_merge_ex((HashTable *) a->ini_settings, (HashTable *) b->ini_settings, (copy_ctor_func_t… in php_merge_dir() 1124 return php_apache_value_handler_ex(cmd, conf->ini_settings, arg1, arg2, PHP_INI_PERDIR); in php_apache_value_handler() 1132 return php_apache_value_handler_ex(cmd, conf->ini_settings, arg1, arg2, PHP_INI_SYSTEM); in php_apache_admin_value_handler() 1157 return php_apache_flag_handler_ex(cmd, conf->ini_settings, arg1, arg2, PHP_INI_PERDIR); in php_apache_flag_handler() 1165 return php_apache_flag_handler_ex(cmd, conf->ini_settings, arg1, arg2, PHP_INI_SYSTEM); in php_apache_admin_flag_handler() [all …]
|
Completed in 23 milliseconds