Files
freeCodeCamp/guide/chinese/php/functions/files/index.md
2018-10-16 21:32:40 +05:30

17 lines
853 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Files
localeTitle: 档
---
## 档
PHP提供了几种处理文件的功能。这些函数允许开发人员启用用户文件上传php用于读取和使用文件中的数据最后用于php将数据写入文件。
#### 更多信息:
* [php.net readfile手册](https://secure.php.net/manual/en/function.readfile.php)
* [php.net fopen手册](https://secure.php.net/manual/en/function.fopen.php)
* [php.net fread手册](https://secure.php.net/manual/en/function.fread.php)
* [php.net fclose手册](https://secure.php.net/manual/en/function.fclose.php)
* [php.net fgets手册](https://secure.php.net/manual/en/function.fgets.php)
* [php.net feof手册](https://secure.php.net/manual/en/function.feof.php)
* [php.net fgetc手册](https://secure.php.net/manual/en/function.fgetc.php)