chpw/include/log.php
2016-09-11 17:48:55 +02:00

19 lines
292 B
PHP

<?php
function getLogFd(){
$logdir = "../../logs/";
$logfile = "chpw.log";
$f = fopen($logdir.$logfile, 'a') or die("can't open file");
return $f;
}
function closeLogFd($f){
fclose($f);
}
function writeLog($f,$msg){
$time=date("Y-m-d h:i");
fwrite($f, $time." - ".$msg."\n");
}
?>