wp_specialchars()WP 1.0

Устарела с версии 2.8.0. Больше не поддерживается и может быть удалена. Используйте esc_html().

Legacy escaping for HTML blocks.

Хуков нет.

Возвращает

Строку. Escaped $text.

Использование

wp_specialchars( $text, $quote_style, $charset, $double_encode );
$text(строка) (обязательный)
Text to escape.
$quote_style(строка)
Unused.
По умолчанию: ENT_NOQUOTES
$charset(false|строка)
Unused.
По умолчанию: false
$double_encode(false)
Whether to double encode. Unused.
По умолчанию: false

Заметки

Список изменений

Устарела с 2.8.0 Use esc_html()

Код wp_specialchars() WP 6.7.1

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 );
	}
}