I have known for a long time that there is a class called PHPExcel (official website) that can be used to operate Excel, but I have never had a chance to try it. I tried it today and found that it is extremely powerful. The downloaded source code package has detailed documentation, and it can almost achieve manual operation of Excel. all functions.
A simple example of reading Excel is as follows:
$inputFileType = 'Excel2007 ';
$inputFileName = './public/files/import_user_template.xlsx';
$sheetname = 'Sheet1';
//Specify the Excel type and create a reader
$objReader = PHPExcel_IOFactory: :createReader($inputFileType);
//Set to only read data, excluding formulas and formats
$objReader->setReadDataOnly(true);
//Only read the specified sheet
$objReader->setLoadSheetsOnly($sheetname);
$objPHPExcel = $objReader->load($inputFileName);
$curSheet = $objPHPExcel->getSheet(0);
//Contains The largest column of data
$allColumn = $curSheet->getHighestColumn();
//The largest row containing data
$allRow = $curSheet->getHighestRow();
for($ currentRow = 1; $currentRow for($currentCol = 'A'; $currentCol echo $curSheet->getCell ($currentCol.$currentRow)->getValue()."t";
}
echo "rn";
}
To use it in ThinkPHP, put Copy the Classes directory in the source code package to the Vendor directory of ThinkPHP, rename it to PHPExcel, and then call the Vendor method to load
vendor('PHPExcel.PHPExcel');
But after reading Excel and calling the M or D method to instantiate the model class, the Model class cannot be found. Error. After research, it was found that it is a conflict with the automatic loading mechanism. To resolve the conflict, you need to use the spl_autoload_register function to re-register the autoloader class before calling the M or D method
spl_autoload_register(array('Think','autoload'));
Solution to the problem of calling PHPExcel in ThinkPHP
When calling PHPExcel in ThinkPHP, the data can be read completely, but an error will occur when D, M or calling the template in the next step. (I wonder if I am the only one who encounters this problem?)
After research, I finally found a solution. Share it with everyone. hehe!
1. First download the PHPExcel package and place it under ThinkPHP/Vendor/ (that is, Think’s third-party library directory).
2. Call the function.
protected function Import_Execl($file){
if(!file_exists($file )){
return array("error"=>1);
}
Vendor("PHPExcel.PHPExcel");
$PHPExcel = new PHPExcel();
$PHPReader = new PHPExcel_Reader_Excel2007();
if(!$PHPReader->canRead($file)){
$PHPReader = new PHPExcel_Reader_Excel5();
if(!$PHPReader->canRead($file )){
return array("error"=>2);
}
}
$PHPExcel = $PHPReader->load($file);
$SheetCount = $ PHPExcel->getSheetCount();
for($i=0;$i$currentSheet = $PHPExcel->getSheet($i);
$allColumn = $this->ExcelChange($currentSheet->getHighestColumn());
$allRow = $currentSheet->getHighestRow();
$array[$i]["Title"] = $currentSheet ->getTitle();
$array[$i]["Cols"] = $allColumn;
$array[$i]["Rows"] = $allRow;
$arr = array ();
for($currentRow = 1 ;$currentRow$row = array();
for($currentColumn=0;$currentColumn$row[$currentColumn] = $currentSheet->getCellByColumnAndRow($currentColumn,$currentRow)->getValue();
}
$arr[$currentRow] = $row ;
}
$array[$i]["Content"] = $arr;
}
spl_autoload_register(array('Think','autoload'));//Must, otherwise ThinkPHP and PHPExcel will conflict
unset($currentSheet);
unset($PHPReader);
unset($PHPExcel);
unlink($file);
return array("error" =>0,"data"=>$array);
}
protected function ExcelChange($str){//Function to cooperate with Execl batch import
$len = strlen($str)- 1;
$num = 0;
for($i=$len;$i>=0;$i--){
$num += (ord($str[$i]) - 64)*pow(26,$len-$i);
}
return $num;
}
3, call.
public function import(){
if(isset($_FILES["import"]) && ($_FILES["import"]["error"] == 0)){
$result = $this->Import_Execl($_FILES["import"]["tmp_name"]);
if($this->Execl_Error[$result["error"]] == 0){
$execl_data = $result["data"][0]["Content"];
unset($execl_data[1]);
$data = D("Data");
foreach($execl_data as $k=>$v){
$d["serial_no"] = $v[0];
$d["check_no"] = $v[1];
$d["work_no"] = $v[2];
$d["class_name"] = $v[3];
$d["user_name"] = $v[4];
$d["new_class"] = $v[5];
$d["error_level"] = $v[6];
$data->data($d)->add();
}
$this->success($this->Execl_Error[$result["error"]]);
}else{
$this->error($this->Execl_Error[$result["error"]]);
}
}else{
$this->error("上传文件失败");
}
}
4,错误数据:
protected $Execl_Error = array("数据导入成功","找不到文件","Execl文件格式不正确");

thinkphp是国产框架。ThinkPHP是一个快速、兼容而且简单的轻量级国产PHP开发框架,是为了简化企业级应用开发和敏捷WEB应用开发而诞生的。ThinkPHP从诞生以来一直秉承简洁实用的设计原则,在保持出色的性能和至简的代码的同时,也注重易用性。

本篇文章给大家带来了关于thinkphp的相关知识,其中主要介绍了关于使用think-queue来实现普通队列和延迟队列的相关内容,think-queue是thinkphp官方提供的一个消息队列服务,下面一起来看一下,希望对大家有帮助。

thinkphp基于的mvc分别是指:1、m是model的缩写,表示模型,用于数据处理;2、v是view的缩写,表示视图,由View类和模板文件组成;3、c是controller的缩写,表示控制器,用于逻辑处理。mvc设计模式是一种编程思想,是一种将应用程序的逻辑层和表现层进行分离的方法。

本篇文章给大家带来了关于thinkphp的相关知识,其中主要介绍了使用jwt认证的问题,下面一起来看一下,希望对大家有帮助。

thinkphp扩展有:1、think-migration,是一种数据库迁移工具;2、think-orm,是一种ORM类库扩展;3、think-oracle,是一种Oracle驱动扩展;4、think-mongo,一种MongoDb扩展;5、think-soar,一种SQL语句优化扩展;6、porter,一种数据库管理工具;7、tp-jwt-auth,一个jwt身份验证扩展包。

本篇文章给大家带来了关于ThinkPHP的相关知识,其中主要整理了使用think-queue实现redis消息队列的相关问题,下面一起来看一下,希望对大家有帮助。

thinkphp查询库是否存在的方法:1、打开相应的tp文件;2、通过“ $isTable=db()->query('SHOW TABLES LIKE '."'".$data['table_name']."'");if($isTable){...}else{...}”方式验证表是否存在即可。

在thinkphp3.2中,可以利用define关闭调试模式,该标签用于变量和常量的定义,将入口文件中定义调试模式设为FALSE即可,语法为“define('APP_DEBUG', false);”;开启调试模式将参数值设置为true即可。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
