Return to Snippet

Revision: 18840
at October 9, 2009 16:51 by jspicher


Initial Code
function file_put($file, $source){
	$fp =  fopen($file, 'w');
	fwrite($fp, $source);
	fclose($fp);
	@chmod($file, 0777);}

Initial URL


Initial Description
Easy file create/write script

Initial Title
file_put($file, $source)

Initial Tags
php, file

Initial Language
PHP