最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php读取本地文件操作函数
时间:2022-06-24 19:59:50 编辑:袖梨 来源:一聚教程网
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'); ?> |
|