wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



sanitize_text_field › WordPress Function

Da2.9.0
Deprecaton/a
sanitize_text_field ( $str )
Parametri:
  • (string) $str String to sanitize.
    Richiesto:
Vedi:
Ritorna:
  • (string) Sanitized string.
Definito a:
Codex:

Sanitizes a string from user input or from the database.

- Checks for invalid UTF-8, - Converts single </code> characters to entities - Strips all tags - Removes line breaks, tabs, and extra whitespace - Strips percent-encoded characters


Sorgenti

function sanitize_text_field( $str ) {
	$filtered = _sanitize_text_fields( $str, false );

	/**
	 * Filters a sanitized text field string.
	 *
	 * @since 2.9.0
	 *
	 * @param string $filtered The sanitized string.
	 * @param string $str      The string prior to being sanitized.
	 */
	return apply_filters( 'sanitize_text_field', $filtered, $str );
}