SimplePie_Decode_HTML_Entities::consume

Advertisement

Private Access Private Access

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Summery Summery

Consume the next byte

Syntax Syntax

SimplePie_Decode_HTML_Entities::consume()

Return Return

(mixed) The next byte, or false, if there is no more data

Source Source

File: wp-includes/SimplePie/Decode/HTML/Entities.php

	{
		if (isset($this->data[$this->position]))
		{
			$this->consumed .= $this->data[$this->position];
			return $this->data[$this->position++];
		}

		return false;
	}

	/**
	 * Consume a range of characters

Advertisement

Advertisement

Leave a Reply