PHP /读取txt文件(或任何东西)
我已经搜索了一段时间了,但是像我这样的 php-noob 无法让它工作。
我想要完成的是一种在根目录中创建目录的方法,其中每个目录都包含图像+ txt 文件。假设您已经:
Root
|
+---Directory 1
| |
| +---Image1.jpg
| |
| +---Image2.jpg
| |
| +---Text.txt
|
+---Directory 2
|
+---Image1.jpg
|
+---Image2.jpg
|
+---Text.txt
我知道如何读取和显示图像+名称。但是如何显示附带的文本文件呢? (内容是文件的标题,而不是文件的标题)。
非常感谢!
I've been searching for a while now, but php-noob as I am, can't get it to work.
What I'm trying to accomplish is a way to make directories in your root, with in each of them images + a txt file. So let's say you got:
Root
|
+---Directory 1
| |
| +---Image1.jpg
| |
| +---Image2.jpg
| |
| +---Text.txt
|
+---Directory 2
|
+---Image1.jpg
|
+---Image2.jpg
|
+---Text.txt
I know how to read and display the images + names. But how do I display the accompanied textfile? (The content that is, not the title of the file).
Much appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用 file_get_contents ( http://php.net/manual /en/function.file-get-contents.php )
更高级:fopen/fread http://php.net/manual/en/function.fread.php
the easiest way is using file_get_contents ( http://php.net/manual/en/function.file-get-contents.php )
More advanced: fopen/fread http://php.net/manual/en/function.fread.php
来自 PHP fpassthru 手册:
From PHP fpassthru manual: