$tkey, 'mobile' => $phone, 'content' => $content, 'username' => sysconf('sms_zt_username'), 'productid' => $productid, 'password' => md5(md5(sysconf('sms_zt_password')) . $tkey), ]; $result = Http::post('http://www.ztsms.cn/sendNSms.do', $data); list($code, $msg) = explode(',', $result . ','); $insert = ['mid' => $mid, 'phone' => $phone, 'content' => $content, 'result' => $result]; Db::name('StoreMemberSmsHistory')->insert($insert); return intval($code) === 1; } /** * 查询短信余额 * @return array * @throws \think\Exception * @throws \think\exception\PDOException */ public static function querySmsBalance() { $tkey = date("YmdHis"); $data = [ 'tkey' => $tkey, 'username' => sysconf('sms_zt_username'), 'password' => md5(md5(sysconf('sms_zt_password')) . $tkey), ]; $result = Http::post('http://www.ztsms.cn/balanceN.do', $data); if ($result > -1) { return ['code' => 1, 'num' => $result, 'msg' => '获取短信剩余条数成功!']; } elseif ($result > -2) { return ['code' => 0, 'num' => '0', 'msg' => '用户名或者密码不正确!']; } elseif ($result > -3) { return ['code' => 0, 'num' => '0', 'msg' => 'tkey不正确!']; } elseif ($result > -4) { return ['code' => 0, 'num' => '0', 'msg' => '用户不存在或用户停用!']; } } }