PHP File Handling Tutorial
PHP File System allows us to create file, read file line by line, read file character by character, write file, append file, delete file and close file.
Open File - fopen()
The PHP fopen() function is used to open a file.
Syntax
Example
Close File - fclose()
The PHP fclose() function is used to close an open file pointer.
Syntax
Example
Read File - fread()
The PHP fread() function is used to read the content of the file. It accepts two arguments: resource and file size.
Syntax
Example
Output
hello php file
PHP Write File - fwrite()
The PHP fwrite() function is used to write content of the string into file.
Syntax
Example
Output
File written successfully
PHP Delete File - unlink()
The PHP unlink() function is used to delete file.
Syntax
Example