3 namespace SimpleExcel\Parser;
35 if(isset($file_url)) {
49 public function getCell($row_num, $col_num, $val_only =
true) {
54 return $this->table_arr[$row_num-1][$col_num-1];
65 public function getColumn($col_num, $val_only = TRUE) {
73 foreach($this->table_arr as
$row){
74 array_push($col_arr, $row[$col_num-1]);
105 public function getRow($row_num, $val_only = TRUE) {
111 return $this->table_arr[$row_num-1];
133 foreach($this->table_arr as
$row){
134 if(array_key_exists($col_num-1, $row)){
148 return array_key_exists($row_num-1, $this->table_arr);
157 return isset($this->table_arr);
172 if (!file_exists($file_path)) {
177 }
else if (strtoupper(pathinfo($file_path, PATHINFO_EXTENSION))!= strtoupper($this->file_extension)){
182 }
else if (($handle = fopen($file_path,
'r')) === FALSE) {