wp_is_json_media_type

函数


wp_is_json_media_type ( $media_type )
参数
  • (string)
    $media_type
    A Media Type string to check.
    Required:
返回值
  • (bool) True if string is a valid JSON Media Type.
定义位置
  • wp-includes/load.php
    , line 1731
引入
5.6.0
弃用

Checks whether a string is a valid JSON Media Type.

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