From f319a46b147af286e40366810bfc4a4b7dd1eeca Mon Sep 17 00:00:00 2001
From: RichardLimSpring <38887201+RichardLim00@users.noreply.github.com>
Date: Fri, 29 Mar 2019 06:19:22 +0800
Subject: [PATCH] Added 2 File reading functions (#30120)
* Added 2 reading functions
Added : fopen for reading, fread function and file_get_contents function.
* Update index.md
* Update index.md
---
.../php/functions/files/file-reading/index.md | 38 +++++++++++++++++--
1 file changed, 35 insertions(+), 3 deletions(-)
diff --git a/guide/english/php/functions/files/file-reading/index.md b/guide/english/php/functions/files/file-reading/index.md
index f376e69d17..96c1b07db4 100644
--- a/guide/english/php/functions/files/file-reading/index.md
+++ b/guide/english/php/functions/files/file-reading/index.md
@@ -3,11 +3,43 @@ title: File Reading
---
## File Reading
-This is a stub. Help our community expand it.
+PHP prepared File Reading functions to ease user to only retrieve information outside PHP.
-This quick style guide will help ensure your pull request gets accepted.
+### fopen("fileName.txt", "r")
+Before we read a file, we need to prepare the file in PHP using fopen function reading mode("r"). The $fileHandler will be the file handler variable in the file reading operation.
+```PHP
+
+$fileHandler = fopen("fileName.txt", "r");
+
+?>
+```
+
+### fread()
+After the desired file to be read has been prepared for reading, user can proceed to fread function to read contents of the file.
+```PHP
+
+```
+Content in the file "file.txt" will be stored in the variable $content.
+
+### file_get_contents()
+This file reading function is rather easy. This function doesn't need the file to be prepare by fopen().
+
+```PHP
+
+```
#### More Information:
+- [fopen Function](http://php.net/manual/en/function.fopen.php)
+- [fread](http://php.net/manual/en/function.fread.php)
+- [filesize](http://php.net/manual/en/function.filesize.php)
+- [file_get_contents](http://php.net/manual/en/function.file-get-contents.php)