-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsms_url.php
More file actions
36 lines (30 loc) · 1.09 KB
/
Copy pathsms_url.php
File metadata and controls
36 lines (30 loc) · 1.09 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
<?php
/**
* 鸿宇多用户商城 注册短信
* ============================================================================
* 版权所有 2015-2018 鸿宇科技有限公司,并保留所有权利。
* 网站地址: http://bbs.hongyuvip.com;
* ----------------------------------------------------------------------------
* 仅供学习交流使用,如需商用请购买正版版权。鸿宇不承担任何法律责任。
* 踏踏实实做事,堂堂正正做人。
* ============================================================================
* $Author: liuhui $
* $Id: sms_url.php 16654 2009-09-09 10:29:24Z liuhui $
*/
$url = '';
if(isset($GLOBALS['_CFG']['certificate_id']))
{
if($GLOBALS['_CFG']['certificate_id'] == '')
{
$certi_id='error';
}
else
{
$certi_id=$GLOBALS['_CFG']['certificate_id'];
}
$sess_id = $GLOBALS['sess']->get_session_id();
$auth = mktime();
$ac = md5($certi_id.'SHOPEX_SMS'.$auth);
$url = 'http://service.shopex.cn/sms/index.php?certificate_id='.$certi_id.'&sess_id='.$sess_id.'&auth='.$auth.'&ac='.$ac;
}
?>