SimplePie_HTTP_Parser::is_linear_whitespace

Advertisement

Summery Summery

See if the next character is LWS

Syntax Syntax

SimplePie_HTTP_Parser::is_linear_whitespace()

Return Return

(bool) true if the next character is LWS, false if not

Source Source

File: wp-includes/SimplePie/HTTP/Parser.php

			|| $this->data[$this->position] === "\x20"
			|| ($this->data[$this->position] === "\x0A"
				&& isset($this->data[$this->position + 1])
				&& ($this->data[$this->position + 1] === "\x09" || $this->data[$this->position + 1] === "\x20")));
	}

	/**
	 * Parse the HTTP version

Advertisement

Advertisement

Leave a Reply