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



wp_is_json_media_type › WordPress Function

Seit5.6.0
Veraltetn/v
wp_is_json_media_type ( $media_type )
Parameter:
  • (string) $media_type A Media Type string to check.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True if string is a valid JSON Media Type.
Definiert in:
Codex:

Checks whether a string is a valid JSON Media Type.



Quellcode

function wp_is_json_media_type( $media_type ) {
	static $cache = array();

	if ( ! isset( $cache[ $media_type ] ) ) {
		$cache[ $media_type ] = (bool) preg_match( '/(^|\s|,)application\/([\w!#\$&-\^\.\+]+\+)?json(\+oembed)?($|\s|;|,)/i', $media_type );
	}

	return $cache[ $media_type ];
}