chengkun
2025-04-27 a0402d122fee696e2b7684ef7edfc504ade12640
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
 
/************
* 计划任务:视频面试订阅通知
* 仅作参考
*/
global $db_config, $db;
 
include(dirname(dirname(dirname(__FILE__))).'/model/spview.model.php');
$spviewM    =    new spview_model($db, $db_config['def']);
$spviewM -> sendSubmsg();
 
 
 
?>