Unconsume some of the data. This moves the data pointer backwards.
int $howMany The number of characters to move the pointer back.:
public function unconsume($howMany = 1) { if ($this->char - $howMany >= 0) { $this->char -= $howMany; } }