溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP怎么導(dǎo)入Excel文件

發(fā)布時間:2021-09-04 02:11:38 來源:億速云 閱讀:170 作者:chen 欄目:編程語言

這篇文章主要講解了“PHP怎么導(dǎo)入Excel文件”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“PHP怎么導(dǎo)入Excel文件”吧!

PHP導(dǎo)入Excel文件代碼示例如下:

  1. < ?php  

  2. require_once '../Excel/reader.php';  

  3. // ExcelFile($filename, $encoding);  

  4. $data = new Spreadsheet_Excel_Reader();  

  5. // Set output Encoding.指定中文碼  

  6. $data->setOutputEncoding('gb2312');  

  7. /***  

  8. * if you want you can change '
    iconv' to mb_convert_encoding:  

  9. * $data->setUTFEncoder('mb');  

  10. **//***  

  11. * By default rows & cols indeces start with 1  

  12. * For change initial index use:  

  13. * $data->setRowColOffset(0);  

  14. **/  

  15. /***  

  16. * Some function for formatting output.  

  17. * $data->setDefaultFormat('%.2f');  

  18. * setDefaultFormat - set format for 
    columns with unknown formatting  

  19. * $data->setColumnFormat(4, '%.3f');  

  20. * setColumnFormat - set format for
     column (apply only to number fields)  

  21. **/  

  22. // 指定讀取的excel文件  

  23. $data->read('../uploads/jsxz01.xls');  

  24. /*  

  25. $data->sheets[0]['numRows'] - count rows  

  26. $data->sheets[0]['numCols'] - count columns  

  27. $data->sheets[0]['cells'][$i][$j] - data 
    from $i-row $j-column  

  28. $data->sheets[0]['cellsInfo'][$i][$j] - 
    extended info about cell  

  29. $data->sheets[0]['cellsInfo'][$i][$j]['type']
     = "date" | "number" | "unknown"  

  30. if 'type' == "unknown" - use 'raw' value, 
    because cell contain value with format '0.00';  

  31. $data->sheets[0]['cellsInfo'][$i][$j]['raw'] 
    = value if cell without format   

  32. $data->sheets[0]['cellsInfo'][$i][$j]['colspan']   

  33. $data->sheets[0]['cellsInfo'][$i][$j]['rowspan']   

  34. */  

  35. error_reporting(E_ALL ^ E_NOTICE);  

  36. // 循環(huán)讀取每一個單元值  

  37. for ($i = 1; $i < = $data->sheets[0]
    ['numRows']; $i++) {  

  38. for ($j = 1; $j < = $data->sheets[0]
    ['numCols']; $j++) {  

  39. echo "\"".$data->sheets[0]['cells']
    [$i][$j]."\",";  

  40. }  

  41. echo "< br>";  

  42. }  

  43. //print_r($data);  

  44. //print_r($data->formatRecords);  

  45. ?> 

感謝各位的閱讀,以上就是“PHP怎么導(dǎo)入Excel文件”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對PHP怎么導(dǎo)入Excel文件這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI