HTMLPurifier_Zipper::advance PHP Method

advance() public method

Iterated hole advancement.
public advance ( $t, $n ) : Original
$t Element to fill hole with
return Original contents of new hole, i away
    public function advance($t, $n)
    {
        for ($i = 0; $i < $n; $i++) {
            $t = $this->next($t);
        }
        return $t;
    }