SimplePie_HTTP_Parser::reason

Advertisement

Summery Summery

Parse the reason phrase

Syntax Syntax

SimplePie_HTTP_Parser::reason()

Source Source

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

		$this->reason = trim(substr($this->data, $this->position, $len), "\x09\x0D\x20");
		$this->position += $len + 1;
		$this->state = 'new_line';
	}

	/**
	 * Deal with a new line, shifting data around as needed

Advertisement

Advertisement

Leave a Reply