PHP Excel row, col count 행 열 갯수
require_once 'reader.php'; // ExcelReader
$data = new Spreadsheet_Excel_Reader();
$data->setOutputEncoding('UTF-8');
$col_count = $data->sheets[0]['numCols'] // column count 행 갯수
$row_count = $data->sheets[0]['numRows'] // row count 행 갯수
'IT > PHP' 카테고리의 다른 글
코드이그나이터4 view에서 Controller 전송 - CodeIgniter4 veiw post Routes (0) | 2020.08.06 |
---|---|
PHP 배열합치기 array() (0) | 2020.05.19 |
PHP Blocked a frame with origin "https://" from accessing a cross-origin frame. Error(오류) (0) | 2020.05.19 |