19 lines
292 B
PHP
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");
|
|
}
|
|
?>
|