SimplePie_HTTP_Parser::name

Advertisement

Summery Summery

Parse a header name

Syntax Syntax

SimplePie_HTTP_Parser::name()

Source Source

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

		if (isset($this->data[$this->position + $len]))
		{
			if ($this->data[$this->position + $len] === "\x0A")
			{
				$this->position += $len;
				$this->state = 'new_line';
			}
			else
			{
				$this->name = substr($this->data, $this->position, $len);
				$this->position += $len + 1;
				$this->state = 'value';
			}
		}
		else
		{
			$this->state = false;
		}
	}

	/**
	 * Parse LWS, replacing consecutive LWS characters with a single space

Advertisement

Advertisement

Leave a Reply