Contao\ZipReader::prev PHP 메소드

prev() 공개 메소드

Go to the previous file of the archive
public prev ( ) : ZipReader | boolean
리턴 ZipReader | boolean The object instance or false if there is no previous file
    public function prev()
    {
        if ($this->intIndex <= 0) {
            return false;
        }
        --$this->intIndex;
        return $this;
    }