WP_HTML_Tag_Processor::skip_whitespace() – Move the internal cursor past any immediate successive whitespace.

You appear to be a bot. Output may be restricted

Description

Move the internal cursor past any immediate successive whitespace.

Usage

WP_HTML_Tag_Processor::skip_whitespace();

Parameters

Returns

void

Source

File name: wordpress/wp-includes/html-api/class-wp-html-tag-processor.php


Lines:

1 to 4 of 4
  private function skip_whitespace() {
    $this->bytes_already_parsed += strspn( $this->html, " \t\f\r\n", $this->bytes_already_parsed );
  }
 

 View on GitHub View on Trac