login

PHP - Working with Files

Opening Files in PHP

You will learn how to open a file in php by using fopen function.

Reading from Text Files

in this tutorial, we show you how to read from text files.

Writing to Text Files

you will learn how to write to ext tfiles by using fwrite, file_put_contents and fputs functions.

Closing the Files

In this tutorial you will learn how to close the file by using fclose function in PHP

PHP Writing Binary Data to a File

How to write a binary data to a file in PHP.

PHP Reading Binary Data from a File

How to read binary data from a file in PHP with source code provided

Creating Utilities File Class

PHP source code which creates utilities file class for wrapping common operations on files.