wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_set_internal_encoding › WordPress Function

Seit3.0.0
Veraltetn/v
wp_set_internal_encoding ( Keine Parameter )
Zugriff:
  • private
Definiert in:
Codex:

Sets internal encoding.

In most cases the default internal encoding is latin1, which is of no use, since we want to use the mb_ functions for utf-8 strings.


Quellcode

function wp_set_internal_encoding() {
	if ( function_exists( 'mb_internal_encoding' ) ) {
		$charset = get_option( 'blog_charset' );
		// phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
		if ( ! $charset || ! @mb_internal_encoding( $charset ) ) {
			mb_internal_encoding( 'UTF-8' );
		}
	}
}