-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLog.php
More file actions
79 lines (53 loc) · 1.32 KB
/
Log.php
File metadata and controls
79 lines (53 loc) · 1.32 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
class Log
{
private $filename;
private $handle;
private $date;
private $time;
private function logMessage($logLevel, $message)
{
$this->fileCreated();
$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);
}
private function fileCreated()
{
if (empty($this->handler)) {
exit("the file is not writable". PHP_EOL);
}
}
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';
// check to make sure the file name is writable
if (is_writable($this->filename)) {
// open the file stream (handler??) whateve we call the conneciton
$this->handler = fopen($this->filename, 'a');
} else {
$this->handler = false;
}
}
public function __destruct()
{
$this->fileCreated();
// close the handler
fclose($this->handler);
}
}