Home >Backend Development >PHP Tutorial >How to determine if there are pictures in the file when uploading an Excel file in PHP_PHP Tutorial
How to determine if there are pictures in the file when uploading an Excel file in PHP. Friends in need can refer to it.
代码如下 | 复制代码 |
$excelPath = 'Test.xls'; $objReader = PHPExcel_IOFactory::createReader('Excel5'); $objReader->setReadDataOnly(true); $objPHPExcel = $objReader->load($excelPath); $currentSheet = $objPHPExcel->getActiveSheet(); $AllImages= $currentSheet->getDrawingCollection(); if(count($AllImages) > 0) { //处理 } |