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



sanitize_mime_type › WordPress Function

Seit3.1.3
Veraltetn/v
sanitize_mime_type ( $mime_type )
Parameter:
  • (string) $mime_type Mime type.
    Erforderlich: Ja
Gibt zurück:
  • (string) Sanitized mime type.
Definiert in:
Codex:

Sanitizes a mime type



Quellcode

function sanitize_mime_type( $mime_type ) {
	$sani_mime_type = preg_replace( '/[^-+*.a-zA-Z0-9\/]/', '', $mime_type );
	/**
	 * Filters a mime type following sanitization.
	 *
	 * @since 3.1.3
	 *
	 * @param string $sani_mime_type The sanitized mime type.
	 * @param string $mime_type      The mime type prior to sanitization.
	 */
	return apply_filters( 'sanitize_mime_type', $sani_mime_type, $mime_type );
}