首頁 > 後端開發 > php教程 > php讀取csv文件類

php讀取csv文件類

WBOY
發布: 2016-07-25 08:43:47
原創
950 人瀏覽過
  1. define("CSV_Start", 0);
  2. define("CSV_Quoted", 1);
  3. define("CSV_Quoted2", 2);
  4. define("CSV_Unquoted", 3);
  5. function readCSV($fh, $len, $delimiter = ',', $enclosure = '"') {
  6. $data = Array();
  7. $fildNr = 0;
  8. $state = CSV_Start;
  9. $data[0] = "";
  10. do {
  11. $line = fgets($fh, $len);
  12. for ($ix = 0; $ix < strlen($line); $ix ) {
  13. if ($line[$ix] == $delimiter) {
  14. if ($state != CSV_Quoted) {
  15. $fildNr ;
  16. $data[$fildNr] = "";
  17. $state = CSV_Start;
  18. } else {
  19. $data[$fildNr] .= $line[$ix];
  20. }
  21. } elseif ($line[$ix] == $enclosure) {
  22. if ($state == CSV_Start) {
  23. $state = CSV_Quoted;
  24. } elseif ($state == CSV_Quoted) {
  25. $state = CSV_Quoted2;
  26. } elseif ($state == CSV_Quoted2) {
  27. $data[$fildNr] .= $line[$ix];
  28. $state = CSV_Quoted;
  29. } else {
  30. $data[$fildNr] .= $line[$ix];
  31. }
  32. } else {
  33. $data[$fildNr] .= $line[$ix];
  34. if ($state == CSV_Quoted2) {
  35. echo "error";
  36. } elseif ($state == CSV_Start) {
  37. $state = CSV_Unquoted;
  38. }
  39. }
  40. }
  41. } while ($state == CSV_Quoted);
  42. return $data;
  43. }
  44. ?>
复制代码

php、csv


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板