Load File into a String

Simple old function to load a file into a string.

Novembre 9, 2009

Simple old function to load a file into a string.


$s = loadStrFile("file.txt");

function loadStrFile($filename) {
	$handle = fopen ($filename, "rb");
	$contents = fread ($handle, filesize ($filename));
	fclose ($handle);
	return $contents;
}

Author

PHP expert. Wordpress plugin and theme developer. Father, Maker, Arduino and ESP8266 enthusiast.

Comments on “Load File into a String”

Just one thought

  1. seeal ha detto:

    Really nice blog, nice snippet codes, thx 4 sharing :D

Comments are closed