fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@ -0,0 +1,11 @@
---
title: File Reading
localeTitle: 文件阅读
---
## 文件阅读
这是一个存根。 [帮助我们的社区扩展它](https://github.com/freecodecamp/guides/tree/master/src/pages/php/functions/files/reading/index.md) 。
[这种快速风格指南有助于确保您的拉取请求被接受](https://github.com/freecodecamp/guides/blob/master/README.md) 。
#### 更多信息:

View File

@ -0,0 +1,11 @@
---
title: File Uploading
localeTitle: 文件上传
---
## 文件上传
这是一个存根。 [帮助我们的社区扩展它](https://github.com/freecodecamp/guides/tree/master/src/pages/php/functions/files/uploading/index.md) 。
[这种快速风格指南有助于确保您的拉取请求被接受](https://github.com/freecodecamp/guides/blob/master/README.md) 。
#### 更多信息:

View File

@ -0,0 +1,11 @@
---
title: File Writing
localeTitle: 文件写作
---
## 文件写作
这是一个存根。 [帮助我们的社区扩展它](https://github.com/freecodecamp/guides/tree/master/src/pages/php/functions/files/writing/index.md) 。
[这种快速风格指南有助于确保您的拉取请求被接受](https://github.com/freecodecamp/guides/blob/master/README.md) 。
#### 更多信息:

View File

@ -0,0 +1,17 @@
---
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)