如何解析“有问题”的问题PHP 中的 CSV

发布于 2024-12-09 01:53:25 字数 774 浏览 1 评论 0原文

我必须像这样解析“有问题的”CSV 文件:

some text here
other line of text, here
header1, header2, header3
value1, value2, value3  // data row #1
value1, value2, value3  // data row #2
(empty line)
(empty line)
some other text here

当然,我只对实际包含有价值数据的行(value1、value2 和 value3)感兴趣。我尝试将 url 提取到字符串中,然后调用 str_getcsv (默认参数),但我得到的是一个难以使用的数组:

array
  0 => string 'some text here ' (length=50)
  1 => string ' other text here
other text here
header1 ' (length=50)
  2 => string 'header2' (length=13)
  3 => string 'header3' (length=14)
  4 => string 'header4' (length=14)
  5 => string '
value1' (length=2)
  6 => string 'value2' (length=1)
  7 => string 'value3' (length=1)
  8 => string 'value4

I've to parse a "problematic" CSV file like this:

some text here
other line of text, here
header1, header2, header3
value1, value2, value3  // data row #1
value1, value2, value3  // data row #2
(empty line)
(empty line)
some other text here

Of course i'm only interested in rows (value1, value2 and value3) that actually contains valuable data. I've tried to fetch the url into a string and than call str_getcsv (default parameters) but what i'm getting is an array that is difficult to work with:

array
  0 => string 'some text here ' (length=50)
  1 => string ' other text here
other text here
header1 ' (length=50)
  2 => string 'header2' (length=13)
  3 => string 'header3' (length=14)
  4 => string 'header4' (length=14)
  5 => string '
value1' (length=2)
  6 => string 'value2' (length=1)
  7 => string 'value3' (length=1)
  8 => string 'value4

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等风来 2024-12-16 01:53:25

如果该结构是固定的,那么您可以创建一个行数组,然后只使用第四行和第五行。

试试这个 $file 是一个包含您要解析的内容的变量。

$lines = array();
foreach(preg_split("/(\r?\n)/", $file) as $line){
    $lines[] = $line;
}
$data_row1 = explode(',', $lines[3]);
$data_row1 = explode(',', $lines[4]);

If that structure is fixed, then you could make an array of lines and then just use the 4th and 5th line.

Try this $file is a variable with the content you want to parse.

$lines = array();
foreach(preg_split("/(\r?\n)/", $file) as $line){
    $lines[] = $line;
}
$data_row1 = explode(',', $lines[3]);
$data_row1 = explode(',', $lines[4]);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文