Summery Summery
See if the next character is LWS
Syntax Syntax
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