搜尋
首頁後端開發php教程phpexcel導入excel到資料庫

<?php
if($_POST[&#39;file_stu&#39;] == "true")
{
    $filename = $_FILES[&#39;inputExcel&#39;][&#39;name&#39;];
    $tmp_name = $_FILES[&#39;inputExcel&#39;][&#39;tmp_name&#39;];
    $msg = uploadFile($filename,$tmp_name);
    echo $msg;
}
//导入Excel文件
function uploadFile($file,$filetempname)
{
    //自己设置的上传文件存放路径
    $filePath = &#39;upFile/&#39;;
    $str ="";
    //下面存放excel路径
    require_once &#39;PHPExcel/PHPExcel.php&#39;;
    require_once &#39;PHPExcel/IOFactory.php&#39;;
    require_once &#39;PHPExcel/Reader/Excel5.php&#39;;
    //注意设置时区
    $time=date("y-m-d-H-i-s");//去当前上传的时间
    //获取上传文件的扩展名
    $extend=strrchr ($file,&#39;.&#39;);
    //上传后的文件名
    $name=$time.$extend;
    $uploadfile=$filePath.$name;//上传后的文件名地址 
    //move_uploaded_file() 函数将上传的文件移动到新位置。若成功,则返回 true,否则返回 false。
    $result=move_uploaded_file($filetempname,$uploadfile);//假如上传到当前目录下
    echo $result;
    if($result) //如果上传文件成功,就执行导入excel操作
    {
        include "../data/common.inc.php";
        $objReader = PHPExcel_IOFactory::createReader(&#39;Excel5&#39;);//use excel2007 for 2007 format 
        $objPHPExcel = $objReader->load($uploadfile);
        $sheet = $objPHPExcel->getSheet(0);
        $highestRow = $sheet->getHighestRow();           //取得总行数 
        $highestColumn = $sheet->getHighestColumn(); //取得总列数
        
       // 循环读取excel文件,读取一条,插入一条
        for($j=1;$j<=$highestRow;$j++)                        //从第一行开始读取数据
        { 
            for($k=&#39;A&#39;;$k<=$highestColumn;$k++)            //从A列读取数据
            { 
                
                //这种方法简单,但有不妥,以&#39;\\&#39;合并为数组,再分割\\为字段值插入到数据库
                //实测在excel中,如果某单元格的值包含了\\导入的数据会为空        
                
           $str .=$objPHPExcel->getActiveSheet()->getCell("$k$j")->getValue().&#39;\\&#39;;//读取单元格
            } 
            echo $str; 
die();
            //explode:函数把字符串分割为数组。
            $strs = explode("\\",$str);
print_r($strs);
exit;
            $sql = "insert into dede_arctype(
`reid` ,
`topid` ,
`sortrank` ,
`typename` ,
`typedir` ,
`isdefault` ,
`defaultname` ,
`issend`
)
values (
&#39;".$strs[0]."&#39;,&#39;".$strs[1]."&#39;,&#39;". $strs[2]."&#39;,&#39;". $strs[3]."&#39;,&#39;". $strs[4]."&#39;,&#39;". $strs[5]."&#39;,&#39;". $strs[6]."&#39;,&#39;". $strs[7]."&#39;)";
        }  
        unlink($uploadfile); //删除上传的excel文件
        $msg = "导入成功!";
}
}
/*class ExcelToArrary {
public function __construct() {
     //导入phpExcel核心类    注意 :你的路径跟我不一样就不能直接复制
     include_once(&#39;Classes/PHPExcel.php&#39;);
}
//*
//* 读取excel $filename 路径文件名 $encode 返回数据的编码 默认为utf8
//*以下基本都不要修改
public function read($filename,$encode=&#39;utf-8&#39;)
{
$objReader = PHPExcel_IOFactory::createReader(&#39;Excel5&#39;); 
$objReader->setReadDataOnly(true); 
$objPHPExcel = $objReader->load($filename); 
$objWorksheet = $objPHPExcel->getActiveSheet(); 
$highestRow = $objWorksheet->getHighestRow(); 
$highestColumn = $objWorksheet->getHighestColumn(); 
$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn); 
excelData==array();
for ($row = 1; $row <= $highestRow; $row++) { 
for ($col = 0; $col < $highestColumnIndex; $col++) { 
$excelData[$row][] =(string)$objWorksheet->getCellByColumnAndRow($col, $row)->getValue();
           } 
         } 
        return $excelData; 
    }     
}
if (! empty ( $_FILES [&#39;file_stu&#39;] [&#39;name&#39;] )) 
{
    $tmp_file = $_FILES [&#39;file_stu&#39;] [&#39;tmp_name&#39;];
    $file_types = explode ( ".", $_FILES [&#39;file_stu&#39;] [&#39;name&#39;] );
    $file_type = $file_types [count ( $file_types ) - 1];
     //判别是不是.xls文件,判别是不是excel文件
    /* if (strtolower ( $file_type ) != "xls")              
    {
          $this->error ( &#39;不是Excel文件,重新上传&#39; );
     }*/
    //设置上传路径
/*     $savePath =&#39;/upFile/&#39;;
    //以时间来命名上传的文件
     $str = date ( &#39;Ymdhis&#39; ); 
     file_name==  $str . "." . $file_type;
     //是否上传成功
     if (! copy ( $tmp_file, $savePath . $file_name ))
      {
          $this->error ( &#39;上传失败&#39; );
      }
    
       //*对上传的Excel数据进行处理生成编程数据,这个函数会在下面第三步的ExcelToArray类中
      //注意:这里调用执行了第三步类里面的read函数,把Excel转化为数组并返回给$res,再进行数据库写入
    
  $res =Service(&#39;ExcelToArray&#39;)->read($savePath . $file_name );
   
        //重要代码 解决Thinkphp M、D方法不能调用的问题   
        //如果在thinkphp中遇到M 、D方法失效时就加入下面一句代码
    
   spl_autoload_register ( array (&#39;Think&#39;, &#39;autoload&#39; ) );
   //对生成的数组进行数据库的写入
   foreach ( $res as $k => $v ) 
   {
       if ($k != 0) 
      {
           $data [&#39;uid&#39;] = $v [0];
           $data [&#39;password&#39;] = sha1 ( &#39;111111&#39; );
           $data [&#39;email&#39;] = $v [1];
           $data [&#39;uname&#39;] = $v [3];
          $data [&#39;institute&#39;] = $v [4];
         $result = M ( &#39;user&#39; )->add ( $data );
         if (! $result) 
         {
              $this->error ( &#39;导入数据库失败&#39; );
          }
      }
   }
}
*/
?>


导入Excel表:



 
     
     

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
可以在PHP會話中存儲哪些數據?可以在PHP會話中存儲哪些數據?May 02, 2025 am 12:17 AM

phpsessionscanStorestrings,數字,數組和原始物。

您如何開始PHP會話?您如何開始PHP會話?May 02, 2025 am 12:16 AM

tostartaphpsession,usesesses_start()attheScript'Sbeginning.1)placeitbeforeanyOutputtosetThesessionCookie.2)useSessionsforuserDatalikeloginstatusorshoppingcarts.3)regenerateSessiveIdStopreventFentfixationAttacks.s.4)考慮使用AttActAcks.s.s.4)

什麼是會話再生,如何提高安全性?什麼是會話再生,如何提高安全性?May 02, 2025 am 12:15 AM

會話再生是指在用戶進行敏感操作時生成新會話ID並使舊ID失效,以防會話固定攻擊。實現步驟包括:1.檢測敏感操作,2.生成新會話ID,3.銷毀舊會話ID,4.更新用戶端會話信息。

使用PHP會話時有哪些性能考慮?使用PHP會話時有哪些性能考慮?May 02, 2025 am 12:11 AM

PHP会话对应用性能有显著影响。优化方法包括:1.使用数据库存储会话数据,提升响应速度;2.减少会话数据使用,只存储必要信息;3.采用非阻塞会话处理器,提高并发能力;4.调整会话过期时间,平衡用户体验和服务器负担;5.使用持久会话,减少数据读写次数。

PHP會話與Cookie有何不同?PHP會話與Cookie有何不同?May 02, 2025 am 12:03 AM

PHPsessionsareserver-side,whilecookiesareclient-side.1)Sessionsstoredataontheserver,aremoresecure,andhandlelargerdata.2)Cookiesstoredataontheclient,arelesssecure,andlimitedinsize.Usesessionsforsensitivedataandcookiesfornon-sensitive,client-sidedata.

PHP如何識別用戶的會話?PHP如何識別用戶的會話?May 01, 2025 am 12:23 AM

phpIdentifiesauser'ssessionSessionSessionCookiesAndSessionId.1)whiwsession_start()被稱為,phpgeneratesainiquesesesessionIdStoredInacookInAcookInAcienamedInAcienamedphpsessIdontheuser'sbrowser'sbrowser.2)thisIdallowSphptpptpptpptpptpptpptpptoretoreteretrieetrieetrieetrieetrieetrieetreetrieetrieetrieetrieetremthafromtheserver。

確保PHP會議的一些最佳實踐是什麼?確保PHP會議的一些最佳實踐是什麼?May 01, 2025 am 12:22 AM

PHP會話的安全可以通過以下措施實現:1.使用session_regenerate_id()在用戶登錄或重要操作時重新生成會話ID。 2.通過HTTPS協議加密傳輸會話ID。 3.使用session_save_path()指定安全目錄存儲會話數據,並正確設置權限。

PHP會話文件默認存儲在哪裡?PHP會話文件默認存儲在哪裡?May 01, 2025 am 12:15 AM

phpsessionFilesArestoredIntheDirectorySpecifiedBysession.save_path,通常是/tmponunix-likesystemsorc:\ windows \ windows \ temponwindows.tocustomizethis:tocustomizEthis:1)useession_save_save_save_path_path()

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

VSCode Windows 64位元 下載

VSCode Windows 64位元 下載

微軟推出的免費、功能強大的一款IDE編輯器

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

Dreamweaver Mac版

Dreamweaver Mac版

視覺化網頁開發工具

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版