/**
	 * Recupera a posição atual do ponteiro de arquivo
	 * @return integer
	 * @see Iterator::key()
	 */
	public function key() {
		if ( $this->testFile() ) {
			return $this->file->tell();
		}
	}