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 행 갯수

 

+ 최근 게시물