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) {
getColumn($col_num, $val_only=TRUE)
Get data of the specified column as an array.
getCell($row_num, $col_num, $val_only=true)
Get value of the specified cell.
__construct($file_url=NULL)
isColumnExists($col_num)
Check whether a specified column exists.
isFileReady($file_path)
Check whether file exists, valid, and readable.
isCellExists($row_num, $col_num)
Check whether cell with specified row & column exists.
isRowExists($row_num)
Check whether a specified row exists.
isFieldExists()
Check whether table exists.
getRow($row_num, $val_only=TRUE)
Get data of the specified row as an array.
getField($val_only=TRUE)
Get data of all cells as an array.
const FILE_EXTENSION_MISMATCH