Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Read From File - PHP

Tags: sreturn

function fnReadFromFile($sFileName) { $sReturn = ''; $fHandle = fopen($sFileName, "r"); while (!feof($fHandle)) $sReturn .= fread($fHandle, 4096); fclose($fHandle); return($sReturn); } Disclaimer: Any code or advice given is for instructional purposes only. We will not be responsible for any loss or damage caused by using this script



This post first appeared on Smash Scripts, please read the originial post: here

Share the post

Read From File - PHP

×

Subscribe to Smash Scripts

Get updates delivered right to your inbox!

Thank you for your subscription

×