PHP File Management Scripts
These PHP scripts will help you perform various file management operations in PHP.
- PHP Filesystem Manual - The official PHP manual that lists all filesystem related PHP features and functions.
- Read remote file using PHP - A PHP script to grab the contents of a remote RSS file. You can use this script as a starter and modify it to suit your requirement.
- Reading a delimited file using PHP - This article will show you how to read a delimited text file using PHP, which will explain about various aspects of a delimited file, code explanation and source code.
- File And Directory Manipulation In PHP - A Devshed tutorial on file and directory manipulation using PHP.
- How to Read File Contents into a String in PHP - An eHow article that shows the basic steps to read the contents of a texfile into a PHP string and display it on screen.
- Read HTML files using PHP - A simple tutorial that shows you steps to read a HTML file using various PHP file functions.
- File compression using PHP - Learn to compress string and files using PHP.
- MySQL to Excel using PHP - This php script will write data from php using text from an MySQL table to a microsoft excel (.xls) file. The Excel file is specified as such by a set of headers, defining content, using php's header() function.
- Create PDF file using PHP - A sitepoint tutorial that shows you steps to create PDFs with PHP. You need to have the PDFLib library installed on your system before you can try these steps.