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



wp_specialchars › WordPress Function

Seitn/v
Veraltet2.8.0
wp_specialchars ( $text, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false )
Parameter: (4)
  • (string) $text Text to escape.
    Erforderlich: Ja
  • (string) $quote_style Unused.
    Erforderlich: Nein
    Standard: ENT_NOQUOTES
  • (false|string) $charset Unused.
    Erforderlich: Nein
    Standard: false
  • (false) $double_encode Whether to double encode. Unused.
    Erforderlich: Nein
    Standard: false
Siehe:
Gibt zurück:
  • (string) Escaped `$text`.
Definiert in:
Codex:

Legacy escaping for HTML blocks.



Quellcode

function wp_specialchars( $text, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false ) {
	_deprecated_function( __FUNCTION__, '2.8.0', 'esc_html()' );
	if ( func_num_args() > 1 ) { // Maintain back-compat for people passing additional arguments.
		return _wp_specialchars( $text, $quote_style, $charset, $double_encode );
	} else {
		return esc_html( $text );
	}
}