file_get_contents 一次读取所有,返回完整字符串
最后更新于:2022-04-02 02:30:11
[TOC]
## 示例
### 读取文件
```
$file = file_get_contents("a.txt");
echo $file;
//12
//34
//56
```
## 读取网络数据
```
// 允许您读取原始的POST数据
// 不能用enctype="multipart/form-data"
file_get_contents("php://input")
```
';