wp_html_split

函数


wp_html_split ( $input )
参数
  • (string)
    $input
    The text which has to be formatted.
    Required:
返回值
  • (string[]) Array of the formatted text.
定义位置
  • wp-includes/formatting.php
    , line 611
引入
4.2.4
弃用

将HTML元素和注释与文本分开。

function wp_html_split( $input ) {
	return preg_split( get_html_split_regex(), $input, -1, PREG_SPLIT_DELIM_CAPTURE );
}