How to read empty cells in PHPExcel without skipping values?
问题 I need your help to solve one problem. I tried to find answer, but I found none. I'm using PHPExcel 1.8.0 to read data from excel-file. And I'm using ReadFilter to read specific columns. Main PHP Code. $price = UPLOAD_DIR . $price; $file_type = PHPExcel_IOFactory::identify($price); $filter = new ShipperReadFilter(); $filter->getShipperSettings($shipper); $reader = PHPExcel_IOFactory::createReader($file_type)->setReadDataOnly(true)->setReadFilter($filter)->load($price); $worksheet = $reader-