【调度系统】广东民航医疗快线调度系统源代码
wlzboy
2025-08-14 b3f8789cf8bf0d934f8431b1d7b564a756576b4b
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
//以下为日志
 
interface ILogHandler
{
    public function write($msg);
    
}
 
class CLogFileHandler implements ILogHandler
{
    private $handle = null;
    
    public function __construct($file = '')
    {
        $this->handle = fopen($file,'a');
    }
    
    public function write($msg)
    {
        fwrite($this->handle, $msg, 4096);
    }
    
    public function __destruct()
    {
        fclose($this->handle);
    }
}
 
class Log
{
    private $handler = null;
    private $level = 15;
    
    private static $instance = null;
    
    private function __construct(){}
 
    private function __clone(){}
    
    public static function Init($handler = null,$level = 15)
    {
        if(!self::$instance instanceof self)
        {
            self::$instance = new self();
            self::$instance->__setHandle($handler);
            self::$instance->__setLevel($level);
        }
        return self::$instance;
    }
    
    
    private function __setHandle($handler){
        $this->handler = $handler;
    }
    
    private function __setLevel($level)
    {
        $this->level = $level;
    }
    
    public static function DEBUG($msg)
    {
        self::$instance->write(1, $msg);
    }
    
    public static function WARN($msg)
    {
        self::$instance->write(4, $msg);
    }
    
    public static function ERROR($msg)
    {
        $debugInfo = debug_backtrace();
        $stack = "[";
        foreach($debugInfo as $key => $val){
            if(array_key_exists("file", $val)){
                $stack .= ",file:" . $val["file"];
            }
            if(array_key_exists("line", $val)){
                $stack .= ",line:" . $val["line"];
            }
            if(array_key_exists("function", $val)){
                $stack .= ",function:" . $val["function"];
            }
        }
        $stack .= "]";
        self::$instance->write(8, $stack . $msg);
    }
    
    public static function INFO($msg)
    {
        self::$instance->write(2, $msg);
    }
    
    private function getLevelStr($level)
    {
        switch ($level)
        {
        case 1:
            return 'debug';
        break;
        case 2:
            return 'info';    
        break;
        case 4:
            return 'warn';
        break;
        case 8:
            return 'error';
        break;
        default:
                
        }
    }
    
    protected function write($level,$msg)
    {
        if(($level & $this->level) == $level )
        {
            $msg = '['.date('Y-m-d H:i:s').']['.$this->getLevelStr($level).'] '.$msg."\n";
            $this->handler->write($msg);
        }
    }
}