时间:2021-07-01 10:21:17 帮助过:2人阅读
fopen() 函数
直接打开文件
例
代码如下 | |
$file = "111.txt"; |
file_get_contents() 函数把整个文件读入一个字符串中
例子
代码如下 | |
echo file_get_contents("test.txt"); 输出: This is a test file with test text. |
php读取本地文件夹文件
代码如下 | |
$dir = opendir('/movie'); ?> |
http://www.bkjia.com/PHPjc/445626.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/445626.htmlTechArticle在php中读取本地文件我们最常用的就是fopen与fread函数配置使用即可了,还有一些其它的像php file_get_contents可以读本地文件也可以读远程文件...