mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-03-17 06:59:51 +00:00
16 lines
219 B
PHP
16 lines
219 B
PHP
![]() |
<?PHP
|
||
|
|
||
|
class Log {
|
||
|
|
||
|
function write($type, $msg) {
|
||
|
$out = date('y-m-d H:i:s').' '.ucfirst($type).': '.$msg."\r\n";
|
||
|
$fn = LOGS.$type.'.log';
|
||
|
|
||
|
$log = fopen($fn, 'a+');
|
||
|
fwrite($log, $out);
|
||
|
fclose($log);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|