Home >php教程 >php手册 >利用PhpExcel读取Excel中文件

利用PhpExcel读取Excel中文件

WBOY
WBOYOriginal
2016-06-06 20:08:061351browse

?phpini_set("display_errors",1);ini_set('include_path', ini_get('include_path').';F://sources//PHPExcel_1.7.8-with_documentation-msoffice_format//Classes//');//设置此页面包含路径include 'PHPExcel.php';include 'PHPExcel/IOFactory.php';defin

<?php ini_set("display_errors",1);
ini_set('include_path', ini_get('include_path').';F://sources//PHPExcel_1.7.8-with_documentation-msoffice_format//Classes//');//设置此页面包含路径
include 'PHPExcel.php';
include 'PHPExcel/IOFactory.php';
define('EXCEL_EXTENSION_2003', "xls");
define('EXCEL_EXTENSION_2007', "xlsx");
$fileName2003 = "f://Standard_Format_File1.xls";
$fileName2007 = "f://Standard_Format_File1.xlsx";
$fileName = $fileName2003;
//$fileName = $fileName2007;
if(getExtendFileName($fileName) == EXCEL_EXTENSION_2003)
{
	$reader = PHPExcel_IOFactory::createReader('Excel5');
}
else if(getExtendFileName($fileName) == EXCEL_EXTENSION_2007)
{
	$reader = new PHPExcel_Reader_Excel2007();
}
$PHPExcel = $reader->load($fileName);
$worksheet = $PHPExcel->getActiveSheet();
$imageInfo = extractImageFromWorksheet($worksheet,"f://");
print_r($imageInfo);
function getExtendFileName($file_name) {
	$extend = pathinfo($file_name);
	$extend = strtolower($extend["extension"]);
	return $extend;
}
function extractImageFromWorksheet($worksheet,$basePath){
	$result = array();
	$imageFileName = "";
	foreach ($worksheet->getDrawingCollection() as $drawing) {
		$xy=$drawing->getCoordinates();
		$path = $basePath;
		// for xlsx
		if ($drawing instanceof PHPExcel_Worksheet_Drawing) {
			$filename = $drawing->getPath();
			$imageFileName = $drawing->getIndexedFilename();
			$path = $path . $drawing->getIndexedFilename();
			copy($filename, $path);
			$result[$xy] = $path;
			// for xls
		} else if ($drawing instanceof PHPExcel_Worksheet_MemoryDrawing) {
			$image = $drawing->getImageResource();
			$renderingFunction = $drawing->getRenderingFunction();
			switch ($renderingFunction) {
				case PHPExcel_Worksheet_MemoryDrawing::RENDERING_JPEG:
					$imageFileName = $drawing->getIndexedFilename();
					$path = $path . $drawing->getIndexedFilename();
					imagejpeg($image, $path);
					break;
				case PHPExcel_Worksheet_MemoryDrawing::RENDERING_GIF:
					$imageFileName = $drawing->getIndexedFilename();
					$path = $path . $drawing->getIndexedFilename();
					imagegif($image, $path);
					break;
				case PHPExcel_Worksheet_MemoryDrawing::RENDERING_PNG:
					$imageFileName = $drawing->getIndexedFilename();
					$path = $path . $drawing->getIndexedFilename();
					imagegif($image, $path);
					break;
				case PHPExcel_Worksheet_MemoryDrawing::RENDERING_DEFAULT:
					$imageFileName = $drawing->getIndexedFilename();
					$path = $path . $drawing->getIndexedFilename();
					imagegif($image, $path);
					break;
			}
			$result[$xy] = $imageFileName;
		}
	}
	return $result;
}
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