Thinkphp+phpexcel导出和导入
在网上找了很多excel导出和导入示例,代码不是很简洁,很多出错,自己在excel方法和控制器改了下。
首先我们看下导出的HTML<a>导出</a>
接着我们看下Index/excelExport 导出的PHP代码:$list = M("user")->field("id,username,password")->order("id DESC")->limit(50)->select(); <br>
$title = array('ID', '用户名', '密码'); //设置要导出excel的表头 <br>
exportExcel($list, '素材火', $title);
exportExcel方法如下:function exportExcel($data, $savefile = null, $title = null, $sheetname = 'sheet1') { <br>
import("Org.Util.PHPExcel"); <br>
//若没有指定文件名则为当前时间戳 <br>
if (is_null($savefile)) { <br>
$savefile = time(); <br>
} <br>
//若指字了excel表头,则把表单追加到正文内容前面去 <br>
if (is_array($title)) { <br>
array_unshift($data, $title); <br>
} <br>
$objPHPExcel = new \PHPExcel(); <br>
//Excel内容 <br>
$head_num = count($data); <br>
<br>
foreach ($data as $k => $v) { <br>
$obj = $objPHPExcel->setActiveSheetIndex(0); <br>
$row = $k + 1; //行 <br>
$nn = 0; <br>
<br>
foreach ($v as $vv) { <br>
$col = chr(65 + $nn); //列 <br>
$obj->setCellValue($col . $row, $vv); //列,行,值 <br>
$nn++; <br>
} <br>
} <br>
//设置列头标题 <br>
for ($i = 0; $i
$alpha = chr(65 + $i); <br>
$objPHPExcel->getActiveSheet()->getColumnDimension($alpha)->setAutoSize(true); //单元宽度自适应 <br>
$objPHPExcel->getActiveSheet()->getStyle($alpha . '1')->getFont()->setName("Candara"); //设置字体 <br>
$objPHPExcel->getActiveSheet()->getStyle($alpha . '1')->getFont()->setSize(12); //设置大小 <br>
$objPHPExcel->getActiveSheet()->getStyle($alpha . '1')->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_BLACK); //设置颜色 <br>
$objPHPExcel->getActiveSheet()->getStyle($alpha . '1')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER); //水平居中 <br>
$objPHPExcel->getActiveSheet()->getStyle($alpha . '1')->getAlignment()->setVertical(PHPExcel_Style_Alignment::VERTICAL_CENTER); //垂直居中 <br>
$objPHPExcel->getActiveSheet()->getStyle($alpha . '1')->getFont()->setBold(true); //加粗 <br>
} <br>
<br>
$objPHPExcel->getActiveSheet()->setTitle($sheetname); //题目 <br>
$objPHPExcel->setActiveSheetIndex(0); //设置当前的sheet <br>
header('Content-Type: application/vnd.ms-excel'); <br>
header('Content-Disposition: attachment;filename="' . $savefile . '.xls"'); //文件名称 <br>
header('Cache-Control: max-age=0'); <br>
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); //Excel5 Excel2007 <br>
$objWriter->save('php://output'); <br>
}
接着我们看下导入的表单:<form> <br>
<div> <br>
<label>Excel表格:</label> <br>
<input> <br>
</div> <br>
<div> <br>
<input> <br>
</div> <br>
</form>
thinkphp上传Index/upload:$upload = new \Think\Upload(); // 实例化上传类 <br>
$upload->maxSize = 3145728; // 设置附件上传大小 <br>
$upload->exts = array('xls', 'xlsx'); // 设置附件上传类 <br>
$upload->savePath = '/'; // 设置附件上传目录 <br>
// 上传文件 <br>
$info = $upload->uploadOne($_FILES['file']); <br>
$filename = 'Uploads' . $info['savepath'] . $info['savename']; <br>
$exts = $info['ext']; <br>
if (!$info) {// 上传错误提示错误信息 <br>
$this->error($upload->getError()); <br>
} else {// 上传成功 <br>
$this->goods_import($filename, $exts); <br>
}
goods_import导入方法:function goods_import($filename, $exts = 'xls') { <br>
//导入PHPExcel类库,因为PHPExcel没有用命名空间,只能inport导入 <br>
import("Org.Util.PHPExcel"); <br>
//创建PHPExcel对象,注意,不能少了\ <br>
$PHPExcel = new \PHPExcel(); <br>
//如果excel文件后缀名为.xls,导入这个类 <br>
<br>
if ($exts == 'xls') { <br>
import("Org.Util.PHPExcel.Reader.Excel5"); <br>
$PHPReader = new \PHPExcel_Reader_Excel5(); <br>
} else if ($exts == 'xlsx') { <br>
import("Org.Util.PHPExcel.Reader.Excel2007"); <br>
$PHPReader = new \PHPExcel_Reader_Excel2007(); <br>
} <br>
//载入文件 <br>
$PHPExcel = $PHPReader->load($filename); <br>
//获取表中的第一个工作表,如果要获取第二个,把0改为1,依次类推 <br>
$currentSheet = $PHPExcel->getSheet(0); <br>
//获取总列数 <br>
$allColumn = $currentSheet->getHighestColumn(); <br>
//获取总行数 <br>
$allRow = $currentSheet->getHighestRow(); <br>
//循环获取表中的数据,$currentRow表示当前行,从哪行开始读取数据,索引值从0开始 <br>
for ($currentRow = 1; $currentRow
//从哪列开始,A表示第一列 <br>
for ($currentColumn = 'A'; $currentColumn
//数据坐标 <br>
$address = $currentColumn . $currentRow; <br>
//读取到的数据,保存到数组$arr中 <br>
$data[$currentRow][$currentColumn] = $currentSheet->getCell($address)->getValue(); <br>
} <br>
} <br>
$this->save_import($data); <br>
}
phpexcel导入和导出演示下载:http://www.sucaihuo.com/php/140.html
AD:真正免费,域名+虚机+企业邮箱=0元

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Learn about Python programming with introductory code examples Python is an easy-to-learn, yet powerful programming language. For beginners, it is very important to understand the introductory code examples of Python programming. This article will provide you with some concrete code examples to help you get started quickly. Print HelloWorldprint("HelloWorld") This is the simplest code example in Python. The print() function is used to output the specified content

PHP variables store values during program runtime and are crucial for building dynamic and interactive WEB applications. This article takes an in-depth look at PHP variables and shows them in action with 10 real-life examples. 1. Store user input $username=$_POST["username"];$passWord=$_POST["password"]; This example extracts the username and password from the form submission and stores them in variables for further processing. 2. Set the configuration value $database_host="localhost";$database_username="username";$database_pa

Title: From Beginner to Mastery: Code Implementation of Commonly Used Data Structures in Go Language Data structures play a vital role in programming and are the basis of programming. In the Go language, there are many commonly used data structures, and mastering the implementation of these data structures is crucial to becoming a good programmer. This article will introduce the commonly used data structures in the Go language and give corresponding code examples to help readers from getting started to becoming proficient in these data structures. 1. Array Array is a basic data structure, a group of the same type

"Go Language Programming Examples: Code Examples in Web Development" With the rapid development of the Internet, Web development has become an indispensable part of various industries. As a programming language with powerful functions and superior performance, Go language is increasingly favored by developers in web development. This article will introduce how to use Go language for Web development through specific code examples, so that readers can better understand and use Go language to build their own Web applications. 1. Simple HTTP Server First, let’s start with a

The simplest code example of Java bubble sort Bubble sort is a common sorting algorithm. Its basic idea is to gradually adjust the sequence to be sorted into an ordered sequence through the comparison and exchange of adjacent elements. Here is a simple Java code example that demonstrates how to implement bubble sort: publicclassBubbleSort{publicstaticvoidbubbleSort(int[]arr){int

How to use PHP to write the inventory management function code in the inventory management system. Inventory management is an indispensable part of many enterprises. For companies with multiple warehouses, the inventory management function is particularly important. By properly managing and tracking inventory, companies can allocate inventory between different warehouses, optimize operating costs, and improve collaboration efficiency. This article will introduce how to use PHP to write code for inventory warehouse management functions, and provide you with relevant code examples. 1. Establish the database before starting to write the code for the inventory warehouse management function.

Java Selection Sorting Method Code Writing Guide and Examples Selection sorting is a simple and intuitive sorting algorithm. The idea is to select the smallest (or largest) element from the unsorted elements each time and exchange it until all elements are sorted. This article will provide a code writing guide for selection sorting, and attach specific Java sample code. Algorithm Principle The basic principle of selection sort is to divide the array to be sorted into two parts, sorted and unsorted. Each time, the smallest (or largest) element is selected from the unsorted part and placed at the end of the sorted part. Repeat the above

Huawei Cloud Edge Computing Interconnection Guide: Java Code Samples to Quickly Implement Interfaces With the rapid development of IoT technology and the rise of edge computing, more and more enterprises are beginning to pay attention to the application of edge computing. Huawei Cloud provides edge computing services, providing enterprises with highly reliable computing resources and a convenient development environment, making edge computing applications easier to implement. This article will introduce how to quickly implement the Huawei Cloud edge computing interface through Java code. First, we need to prepare the development environment. Make sure you have the Java Development Kit installed (
