php判斷上傳的Excel文件中是否有圖片及PHPExcel庫認(rèn)識
更新時間:2013年01月11日 14:47:09 作者:
php判斷Excel文件中是否有圖片,大家很想知道如何實現(xiàn)吧,不要走開接下來為您揭曉,感興趣的朋友可以了解下哦
需要借助PHPExcel這個庫
$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) {
//處理
}
復(fù)制代碼 代碼如下:
$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) {
//處理
}
相關(guān)文章
PHP中創(chuàng)建空文件的代碼[file_put_contents vs touch]
php中用file_put_contents比touch快,大約兩倍左右。2012-01-01PHP簡單實現(xiàn)合并2個數(shù)字鍵數(shù)組值的方法
這篇文章主要介紹了PHP簡單實現(xiàn)合并2個數(shù)字鍵數(shù)組值的方法,涉及php針對數(shù)組的遍歷、判斷、轉(zhuǎn)換等相關(guān)操作技巧,需要的朋友可以參考下2017-05-05