PHP 如何以字符串形式检索 .CSV 的第一行?

发布于 2024-10-02 22:50:53 字数 135 浏览 1 评论 0原文

如何以字符串形式检索 .CSV 文件的第一行?

我当前使用的方法无法返回第一行,而是返回第二行:

$content = file($filepath);
echo $content[0];

How do I retrieve the first line of a .CSV file as a string?

This current method I am using is failing to return the first line, but is instead returning the second line:

$content = file($filepath);
echo $content[0];

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

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

发布评论

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

评论(2

毁梦 2024-10-09 22:50:53

fgets() 可用于读取单个文件中的行。

fgets() can be used to read a single line from a file.

面犯桃花 2024-10-09 22:50:53

此功能将更适合您:
fgetcsv()

但是对于大文件并且如果您需要性能使用此功能: https://www.php.net/manual/en/ function.fgets.php

This function will work better for you:
fgetcsv()

But on a large files and if you need the performance use this function: https://www.php.net/manual/en/function.fgets.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文