Heim >Backend-Entwicklung >PHP-Tutorial >php读取csv文件类

php读取csv文件类

WBOY
WBOYOriginal
2016-07-25 08:43:47932Durchsuche
  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


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn