function.php
5.7 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<?php
use Model\emailSql;
/**
* 进程pid
* @return int
* @author:dc
* @time 2023/2/18 14:00
*/
function posix_pid(){
$pid = getmypid();
return $pid ? $pid : 0;
}
/**
* redis 驱动
* @return \Lib\RedisPool
* @author:dc
* @time 2023/2/13 9:44
*/
function redis():\Lib\RedisPool {
return \Lib\RedisPool::instance(posix_pid().co::getCid());
}
/**
* 操作db
* @return \Lib\DbPool
* @author:dc
* @time 2023/2/13 14:15
*/
function db():\Lib\DbPool{
return \Lib\DbPool::instance(posix_pid().co::getCid());
}
/**
* 记录日志
* @param $message
* @author:dc
* @time 2023/2/10 14:58
*/
function logs($message,$filename=null){
\Lib\Log::append($message, $filename);
}
/**
* 消息输出
* @param $message
* @author:dc
* @time 2023/2/10 15:42
*/
function _echo($message){
echo date('Y-m-d H:i:s').' '.$message."\n";
}
/**
* 文本消息,多语言
* @param $key
* @return mixed
* @author:dc
* @time 2023/2/13 10:51
*/
function __($key):mixed{
return $key ? \Lib\Lang::msg($key) : '';
}
/**
* @return \Lib\App
* @author:dc
* @time 2023/2/13 11:48
*/
function app():\Lib\App{
return \Lib\App::instance();
}
/**
* 过滤函数
* @param $value
* @param null $filter
* @return array|false|float|int|mixed
* @author:dc
* @time 2023/2/13 11:54
*/
function my_filter($value,$filter=null){
if(is_array($value)){
foreach ($value as $key=>$val){
$value[$key] = my_filter($val,$filter);
}
} else {
// 过滤函数
if(!is_array($filter)){
$filter = [$filter];
}
// 合并默认过滤
$filter = array_merge(['trim'], $filter);
// 循环过滤
foreach ($filter as $fil){
$fil && $value = call_user_func($fil,$value);
}
}
// 强制转类型
if(is_numeric($value)&&strlen($value)<10&&intval(substr($value,0,1))!==0){
if(strpos($value,'.')!==false){
// $value = doubleval($value); 这个要报毒,华为电脑
$value = floatval($value);
}else{
$value = intval($value);
}
}
return $value;
}
/**
* db 组合条件
* @param array $where
* @param string $ar
* @return string
* @author:dc
* @time 2023/2/17 10:41
*/
function dbWhere(array $where, string $ar = 'and'):string{
$sql = [];
foreach ($where as $f=>$v){
if(is_array($v)){
$v = array_map(function ($n){
return "'".addslashes($n)."'";
},$v);
$sql[] = "`{$f}` in (".implode(',',$v).")";
}else{
$sql[] = "`{$f}` = '".addslashes($v)."'";
}
}
return implode(' '.$ar.' ',$sql);
}
/**
* db 更新sql
* @param array $data
* @return string
* @author:dc
* @time 2023/2/17 10:43
*/
function dbUpdate(array $data):string {
$sql = [];
foreach ($data as $f=>$v){
$sql[] = "`{$f}` = :{$f}";
}
return implode(' , ',$sql);
}
/**
* 获取前端提交过来的邮箱
* @return array
* @throws \Lib\Err
* @author:dc
* @time 2023/3/10 14:57
*/
function web_request_emails():array {
$emails = app()->request('emails');
$emails = is_array($emails) ? $emails : [$emails];
foreach ($emails as $k=>$email){
if(!\Lib\Verify::sEmail($email)){
unset($emails[$k]);
}
}
if(empty($emails)){
app()->e('email_request_required');
}
return array_values($emails);
}
/**
* 前端获取邮箱一个
* @return string
* @throws \Lib\Err
* @author:dc
* @time 2023/3/10 16:05
*/
function web_request_email():string {
$email = app()->request('email');
if(!\Lib\Verify::sEmail($email)){
app()->e('email_request_required');
}
return $email;
}
/**
* 分页数据
* @param $item
* @param $total
* @param $page
* @param $limit
* @return array
* @author:dc
* @time 2023/2/17 15:05
*/
function listsPage($item,$total,$page,$limit){
return [
'item' => $item,
'page' => $page,
'total' => $total,
'limit' => $limit,
];
}
/**
* 把返回的数据集转换成Tree
* @param $list array 数据列表
* @param string|int $pk 主键|root
* @param string $pid 父id
* @param string $child 子键
* @param int $root 获取哪个id下面
* @param bool $empty_child 当子数据不存在,是否要返回空子数据
* @return array
*/
function list_to_tree($list, $pk='id',$pid = 'pid',$child = '_child',$root=0,$empty_child=true) {
// 创建Tree
$tree = array();
if(is_array($list)) {
// 创建基于主键的数组引用
$refer = array();
foreach ($list as $key => $data) {
if($empty_child){
$list[$key][$child] = [];
}
$refer[$data[$pk]] =& $list[$key];
}
foreach ($list as $key => $data) {
// 判断是否存在parent
$parentId = $data[$pid];
if ($root == $parentId) {
$tree[] =& $list[$key];
}else{
if (isset($refer[$parentId])) {
$refer[$parentId][$child][] = & $list[$key];
}
}
}
}
return $tree;
}
/**
* todo:: 立即开始同步邮件,非必要请不要手动调用,,系统有定时调用,
* @author:dc
* @time 2023/2/18 11:04
*/
function start_now_mail(){
$id = 0;
while (true){
$ids = db()->all('select `id` from `'.\Model\emailSql::$table.'` where `id` > '.$id.' order by `id` asc limit 1000 offset 0');
if(!$ids){
break;
}
foreach ($ids as $v){
$id = $v['id'];
redis()->rPush('sync_email_lists', $v['id']);
}
}
}