Searched refs:modify_type (Results 1 – 4 of 4) sorted by relevance
/PHP-7.1/Zend/ |
H A D | zend_ini.c | 299 ZEND_API int zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_type, int s… in zend_alter_ini_entry() argument 302 return zend_alter_ini_entry_ex(name, new_value, modify_type, stage, 0); in zend_alter_ini_entry() 306 …y_chars(zend_string *name, const char *value, size_t value_length, int modify_type, int stage) /* … in zend_alter_ini_entry_chars() argument 312 ret = zend_alter_ini_entry_ex(name, new_value, modify_type, stage, 0); in zend_alter_ini_entry_chars() 318 …hars_ex(zend_string *name, const char *value, size_t value_length, int modify_type, int stage, int… in zend_alter_ini_entry_chars_ex() argument 324 ret = zend_alter_ini_entry_ex(name, new_value, modify_type, stage, force_change); in zend_alter_ini_entry_chars_ex() 330 ZEND_API int zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, int modify_type, in… in zend_alter_ini_entry_ex() argument 344 if (stage == ZEND_INI_STAGE_ACTIVATE && modify_type == ZEND_INI_SYSTEM) { in zend_alter_ini_entry_ex() 349 if (!(ini_entry->modifiable & modify_type)) { in zend_alter_ini_entry_ex()
|
H A D | zend_ini.h | 77 ZEND_API int zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_type, int s… 78 ZEND_API int zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, int modify_type, in… 79 …entry_chars(zend_string *name, const char *value, size_t value_length, int modify_type, int stage); 80 …hars_ex(zend_string *name, const char *value, size_t value_length, int modify_type, int stage, int…
|
/PHP-7.1/main/ |
H A D | php_ini.h | 37 PHPAPI void php_ini_activate_config(HashTable *source_hash, int modify_type, int stage);
|
H A D | php_ini.c | 782 PHPAPI void php_ini_activate_config(HashTable *source_hash, int modify_type, int stage) in php_ini_activate_config() argument 789 zend_alter_ini_entry_ex(str, Z_STR_P(data), modify_type, stage, 0); in php_ini_activate_config()
|
Completed in 16 milliseconds