You need to use the PHPExcel library
Copy the code The code is as follows:
$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) {
/ /process
}
http://www.bkjia.com/PHPjc/326367.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/326367.htmlTechArticleYou need to use the PHPExcel library to copy the code. The code is as follows: $excelPath = 'Test.xls'; $objReader = PHPExcel_IOFactory: :createReader('Excel5'); $objReader-setReadDataOnly(true); $objPHPE...