首页 > 后端开发 > php教程 > php读取csv文件类

php读取csv文件类

WBOY
发布: 2016-07-25 08:43:47
原创
952 人浏览过
  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 if ($line[$ix] == $delimiter) {
  13. if ($state != CSV_Quoted) {
  14. $fildNr++;
  15. $data[$fildNr] = "";
  16. $state = CSV_Start;
  17. } else {
  18. $data[$fildNr] .= $line[$ix];
  19. }
  20. } elseif ($line[$ix] == $enclosure) {
  21. if ($state == CSV_Start) {
  22. $state = CSV_Quoted;
  23. } elseif ($state == CSV_Quoted) {
  24. $state = CSV_Quoted2;
  25. } elseif ($state == CSV_Quoted2) {
  26. $data[$fildNr] .= $line[$ix];
  27. $state = CSV_Quoted;
  28. } else {
  29. $data[$fildNr] .= $line[$ix];
  30. }
  31. } else {
  32. $data[$fildNr] .= $line[$ix];
  33. if ($state == CSV_Quoted2) {
  34. echo "error";
  35. } elseif ($state == CSV_Start) {
  36. $state = CSV_Unquoted;
  37. }
  38. }
  39. }
  40. } while ($state == CSV_Quoted);
  41. return $data;
  42. }
  43. ?>
复制代码

php, csv


相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板