-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLog.php
More file actions
62 lines (42 loc) · 1.07 KB
/
Log.php
File metadata and controls
62 lines (42 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
class Log
{
private $filename;
private $handle;
private $date;
private $time;
public function logMessage($logLevel, $message)
{
$message = PHP_EOL.$this->date.' '.$this->time.' ['.$logLevel.'] '.$message;
fwrite($this->handler, $message);
}
public function info($message)
{
//pass info to logMessage
$this->logMessage('INFO',$message);
}
public function error($message)
{
//pass error to logMessage
$this->logMessage('ERROR',$message);
}
public function __construct($prefix = 'log')
{
// set our property variable types
settype($prefix, 'string');
// set the date and time
$this->date = date('Y-m-d');
$this->time = date('H:i:s');
// create filename with the format $prfix-YYYY-MM-DD.log
$this->filename = '../logdata/'.$prefix.'-'.$this->date.'.log';
// open the file stream (handler??) whateve we call the conneciton
$this->handler = fopen($this->filename, 'a');
}
public function __destruct()
{
// close the handler
fclose($this->handler);
}
}
// $test = new Log();
// $test->info("test this message");