Searched refs:ini_settings (Results 1 – 3 of 3) sorted by relevance
/PHP-5.5/ |
H A D | run-tests.php | 1461 $ini_settings = array(); 1464 settings2array($ini_overwrites, $ini_settings); 1487 settings2params($ini_settings); 2270 function settings2array($settings, &$ini_settings) argument 2281 if (!isset($ini_settings[$name])) { 2282 $ini_settings[$name] = array(); 2285 $ini_settings[$name][] = $value; 2288 $ini_settings[$name] = $value; 2294 function settings2params(&$ini_settings) argument 2298 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.5/sapi/apache_hooks/ |
H A D | mod_php5.c | 63 HashTable *ini_settings; member 821 zend_hash_destroy(conf->ini_settings); in php_destroy_per_dir_info() 830 free(conf->ini_settings); in php_destroy_per_dir_info() 856 conf->ini_settings = (HashTable *) malloc(sizeof(HashTable)); in php_create_dir() 857 zend_hash_init_ex(conf->ini_settings, 5, NULL, (void (*)(void *)) destroy_per_dir_entry, 1, 0); in php_create_dir() 880 …zend_hash_merge_ex((HashTable *) a->ini_settings, (HashTable *) b->ini_settings, (copy_ctor_func_t… in php_merge_dir() 1119 return php_apache_value_handler_ex(cmd, conf->ini_settings, arg1, arg2, PHP_INI_PERDIR); in php_apache_value_handler() 1127 return php_apache_value_handler_ex(cmd, conf->ini_settings, arg1, arg2, PHP_INI_SYSTEM); in php_apache_admin_value_handler() 1152 return php_apache_flag_handler_ex(cmd, conf->ini_settings, arg1, arg2, PHP_INI_PERDIR); in php_apache_flag_handler() 1160 return php_apache_flag_handler_ex(cmd, conf->ini_settings, arg1, arg2, PHP_INI_SYSTEM); in php_apache_admin_flag_handler() [all …]
|
Completed in 17 milliseconds