如何取出mysql等txt文件中的数据?
(我的母语不是英语) 我想逐行获取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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用函数 file(); 返回数组(逐行)
use function file(); which returns array (line by line)
打印第 4 行
to print line 4
使用(但要注意不要浪费内存):
file_get_contents
fgets
文件
use (But be careful not to waste your memory):
file_get_contents
fgets
file