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



wp_is_json_media_type › WordPress Function

Da5.6.0
Deprecaton/a
wp_is_json_media_type ( $media_type )
Parametri:
  • (string) $media_type A Media Type string to check.
    Richiesto:
Ritorna:
  • (bool) True if string is a valid JSON Media Type.
Definito a:
Codex:

Checks whether a string is a valid JSON Media Type.



Sorgenti

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