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

WBOY
Release: 2016-07-25 09:07:41
Original
1156 people have browsed it
  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. ?>
复制代码


source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!