如何取出mysql等txt文件中的数据?

发布于 2024-11-20 00:02:34 字数 191 浏览 2 评论 0原文

(我的母语不是英语) 我想逐行获取txt文件中的数据。

示例:(这是我的txt文件)

exampleline1
exampleline2
exampleline3
exampleline4

(1)我想选择所有行并打印。怎样做?

(2)例如我想打印第4行,如何打印?

(my first language is no english)
i want to take data in txt files line by line.

Example:(This is my txt files)

exampleline1
exampleline2
exampleline3
exampleline4

(1)i want to select all lines and print. How to?

(2)For example i want to print line 4. How to?

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

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

发布评论

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

评论(3

段念尘 2024-11-27 00:02:35

使用函数 file(); 返回数组(逐行)

use function file(); which returns array (line by line)

伊面 2024-11-27 00:02:34
$lines = file("file.txt");
foreach($lines as $line){
  echo $line."<br>";
}

打印第 4 行

echo $lines[3];
$lines = file("file.txt");
foreach($lines as $line){
  echo $line."<br>";
}

to print line 4

echo $lines[3];
像极了他 2024-11-27 00:02:34

使用(但要注意不要浪费内存):
file_get_contents
fgets
文件

use (But be careful not to waste your memory):
file_get_contents
fgets
file

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