Sender.php
1005 Bytes
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
<?php
error_reporting(E_ALL);
ini_set('display_errors',true);
/**
* 读取配置信息
*/
$Config = new Lua();
$Config->include(__DIR__.'/Config.lua');
require_once __DIR__.'/Rabbitmq.php';
/**
* 发送者类
*/
class Sender{
/**
* 添加到队列中
* @param array $data
* @param array $tags
* @return type
*/
static function pushmq($type,array $data,array $tags = []){
$tags = $tags + array(
'ip'=>'',
'hostname'=>'',
);
return Rabbitmq::handle($type, $data, $tags);
}
/**
* 写日志
* @param type $message
* @return type
*/
static function log($message){
global $Config;
echo $message."\n";
if (!$Config->log_file){
return;
}
$fp = @fopen($Config->log_file,'a');
if (!$fp){
return;
}
$r = fwrite($fp, $message."\n");
fclose($fp);
return $r;
}
}