wp_kses_no_null

函数
wp_kses_no_null ( $string, $options = null )
参数
  • (string) $string Content to filter null characters from.
    Required:
  • (array) $options Set 'slash_zero' => 'keep' when '\0' is allowed. Default is 'remove'.
    Required:
    Default: null
返回值
  • (string) Filtered content.
定义位置
相关方法
wp_kses_postwp_kses_versionwp_kses_hookwp_kses_one_attrwp_kses_array_lc
引入
1.0.0
弃用
-

wp_kses_no_null: 此函数用于从字符串中删除空字符。

删除文本字符串中任何无效的控制字符。

同时删除任何“字符串的实例。

function wp_kses_no_null( $string, $options = null ) {
	if ( ! isset( $options['slash_zero'] ) ) {
		$options = array( 'slash_zero' => 'remove' );
	}

	$string = preg_replace( '/[x00-x08x0Bx0Cx0E-x1F]/', '', $string );
	if ( 'remove' === $options['slash_zero'] ) {
		$string = preg_replace( '/\\+0+/', '', $string );
	}

	return $string;
}

常见问题

FAQs
查看更多 >