wp_kses_bad_protocol_once

函数
wp_kses_bad_protocol_once ( $string, $allowed_protocols, $count = 1 )
参数
  • (string) $string Content to check for bad protocols.
    Required:
  • (string[]) $allowed_protocols Array of allowed URL protocols.
    Required:
  • (int) $count Depth of call recursion to this function.
    Required:
    Default: 1
返回值
  • (string) Sanitized content.
定义位置
相关方法
wp_kses_bad_protocolwp_kses_post_deepwp_allowed_protocolswp_kses_attr_parsewp_kses_hair_parse
引入
1.0.0
弃用
-

wp_kses_bad_protocol_once: 这个函数与wp_kses_bad_protocol类似,但它只删除它发现的第一个不允许的协议。

净化来自不良协议和其他字符的内容。

这个函数在字符串的开头搜索URL协议,同时处理空白和HTML实体。

function wp_kses_bad_protocol_once( $string, $allowed_protocols, $count = 1 ) {
	$string  = preg_replace( '/(&#0*58(?![;0-9])|&#x0*3a(?![;a-f0-9]))/i', '$1;', $string );
	$string2 = preg_split( '/:|&#0*58;|&#x0*3a;|:/i', $string, 2 );
	if ( isset( $string2[1] ) && ! preg_match( '%/?%', $string2[0] ) ) {
		$string   = trim( $string2[1] );
		$protocol = wp_kses_bad_protocol_once2( $string2[0], $allowed_protocols );
		if ( 'feed:' === $protocol ) {
			if ( $count > 2 ) {
				return '';
			}
			$string = wp_kses_bad_protocol_once( $string, $allowed_protocols, ++$count );
			if ( empty( $string ) ) {
				return $string;
			}
		}
		$string = $protocol . $string;
	}

	return $string;
}

常见问题

FAQs
查看更多 >