mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
16 lines
No EOL
219 B
PHP
16 lines
No EOL
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);
|
|
}
|
|
|
|
}
|
|
|
|
?>
|