wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_html_split › WordPress Function

Seit4.2.4
Veraltetn/v
wp_html_split ( $input )
Parameter:
  • (string) $input The text which has to be formatted.
    Erforderlich: Ja
Gibt zurück:
  • (string[]) Array of the formatted text.
Definiert in:
Codex:

Separates HTML elements and comments from the text.



Quellcode

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