php匯入excel檔案到mysql資料庫的方法
這篇文章主要介紹了php匯入excel檔案到mysql資料庫的方法,分析了phpexcel類操作excel檔案的技巧及匯入資料庫的方法,具有一定參考借鑒價值,需要的朋友可以參考下
本文執行個體講述了php匯入excel檔案到mysql資料庫的方法。分享給大家供大家參考。具體分析如下:
php匯入excel檔案入mysql資料庫我們是需一藉助一個phpexcel類檔案了,有了這個類檔案我們就可以快速簡單的匯入excel到mysql資料庫中,這裡就來舉個例子給大家說明一下具體用法.
匯入前我們需要先準備一個資料庫,sql語句代碼如下:
代碼如下:
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50133
Source Host : localhost:3306
Source Database : test
Target Server Type : MYSQL
Target Server Version : 50133
File Encoding : 65001
Date: 2011-10-11 14:11:38
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `execl`
-- ----------------------------
DROP TABLE IF EXISTS `execl`;
CREATE TABLE `execl` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of execl
-- ----------------------------
INSERT INTO `execl` VALUES ('14', 'jim');
INSERT INTO `execl` VALUES ('15', 'taurus');
php處理常式,在這裡我們需要使用一個phpexcel類檔案了,這個可以百度搜尋下載,代碼如下:
代碼如下:
if($_FILES['execl']['name']){
$db = mysql_connect('localhost','root','');
mysql_select_db('test');
mysql_query('set names gbk');
require_once 'reader.php';
$data = new Spreadsheet_Excel_Reader();
$data->setOutputEncoding('CP936');
$data->read($_FILES['execl']['name']);
error_reporting(E_ALL ^ E_NOTICE);
$sql = "";
for($i=1;$i<=$data->sheets[0]['numRows'];$i++)
{
if($data->sheets[0]['cells'][$i][1]!=""){
$sql = "INSERT INTO `execl`(`name`)values('".$data->sheets[0]['cells'][$i][2]."');";
if(mysql_query($sql)){
echo '成功';
}else{
die('失敗');
}
}
}
}
?>
希望本文所述對大家的php程式設計有所協助。
http://www.bkjia.com/PHPjc/971926.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/971926.htmlTechArticlephp匯入excel檔案到mysql資料庫的方法 這篇文章主要介紹了php匯入excel檔案到mysql資料庫的方法,分析了phpexcel類操作excel檔案的技巧及匯入資料...