PassThePeas
12/8/2014 - 10:55 PM

Log to file with date

Log to file with date

<?php

	function logToFile($log, $logFile) {
		$actualDate=date("Ymd:His");
		file_put_contents($logFile, $actualDate." >> ".$log."\n", FILE_APPEND);
	}

?>