SimpleExcel\Parser\BaseParser::isRowExists PHP Method

isRowExists() public method

Check whether a specified row exists
public isRowExists ( integer $row_num ) : boolean
$row_num integer Row number
return boolean
    public function isRowExists($row_num)
    {
        return array_key_exists($row_num - 1, $this->table_arr);
    }