HTMLPurifier_Zipper::advance PHP 메소드

advance() 공개 메소드

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