Home  >  Article  >  Backend Development  >  How to determine whether there are pictures in the file when uploading an Excel file in PHP

How to determine whether there are pictures in the file when uploading an Excel file in PHP

WBOY
WBOYOriginal
2016-07-25 09:07:411157browse
  1. $excelPath = 'Test.xls';
  2. $objReader = PHPExcel_IOFactory::createReader('Excel5');
  3. $objReader->setReadDataOnly(true);
  4. $objPHPExcel = $objReader->load($excelPath);
  5. $currentSheet = $objPHPExcel->getActiveSheet();
  6. $AllImages= $currentSheet->getDrawingCollection();
  7. if(count($AllImages) > 0) {
  8. //处理
  9. }
  10. ?>
复制代码


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn