HTMLPurifier_Zipper::advance PHP Méthode

advance() public méthode

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