我使用PHPExcel库从excel文件中获取所有数据。
但我为False
获得“1”并为require_once 'Classes/PHPExcel.php';
$file_path = "test.xlsx";
try {
$objPHPExcel = PHPExcel_IOFactory::load($file_path);
} catch(Exception $e) {
die('Error loading file "'.pathinfo($inputFileName,PATHINFO_BASENAME).'": '.$e->getMessage());
}
$sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true);
print_R($sheetData);
获取空值。
我需要1/0或True / False。 (不是空的)
PHP代码
Array
(
[1] => Array
(
[A] => Country
[B] => Boolean
)
[2] => Array
(
[A] => India
[B] => 1
)
[3] => Array
(
[A] => US
[B] =>
)
)
INPUT
实际输出
{{1}}
谢谢你!