wpseek.com
				Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
			wp_is_ini_value_changeable › WordPress Function
Seit4.6.0
Veraltetn/v
› wp_is_ini_value_changeable ( $setting )
| Parameter: | 
 | 
| Links: | |
| Gibt zurück: | 
 | 
| Definiert in: | 
 | 
| Codex: | 
Determines whether a PHP ini value is changeable at runtime.
Ähnliche Funktionen: wp_revisions_enabled, wp_is_fatal_error_handler_enabled, _wp_sidebars_changed, wp_iso_descrambler, wp_save_image_file
	Quellcode
function wp_is_ini_value_changeable( $setting ) {
	static $ini_all;
	if ( ! isset( $ini_all ) ) {
		$ini_all = false;
		// Sometimes `ini_get_all()` is disabled via the `disable_functions` option for "security purposes".
		if ( function_exists( 'ini_get_all' ) ) {
			$ini_all = ini_get_all();
		}
	}
	if ( isset( $ini_all[ $setting ]['access'] )
		&& ( INI_ALL === $ini_all[ $setting ]['access'] || INI_USER === $ini_all[ $setting ]['access'] )
	) {
		return true;
	}
	// If we were unable to retrieve the details, fail gracefully to assume it's changeable.
	if ( ! is_array( $ini_all ) ) {
		return true;
	}
	return false;
}