摘要: /**使用说明:发送邮件使用phPHPMailer类 1.发送邮件函数/** * 邮件发送方法 * 使用PHPMailer类 * @param $to 目标 * @param $title 标题 * @param $content 内容 */function sendMail($to,$title, 阅读全文
posted @ 2017-08-14 11:33 满月夜 阅读(312) 评论(0) 推荐(0) 编辑
摘要: <?php /* * tracking_number 快递单号 * carrier_code 运输商简码(查询链接 https://www.trackingmore.com/help_article-16-30-cn.html) * Trackingmore-Api-Key: 后台生成API key 阅读全文
posted @ 2017-08-14 11:29 满月夜 阅读(167) 评论(0) 推荐(0) 编辑
摘要: /** * @return int|mixed * $user 返回的时候是需要解密的 */ function is_login(){ $user = session('user_auth'); if (empty($user)) { return 0; } else { return sessio 阅读全文
posted @ 2017-08-14 11:26 满月夜 阅读(285) 评论(0) 推荐(0) 编辑
摘要: /** *弹出授权页面,可通过openid拿到昵称、性别、所在地。并且,即使在未关注的情况下,只要用户授权,也能获取其信息 */function index(){ //公众号在微信的appid $appid = "" //重定向到回调地址 $redirect_uri =urlencode('http 阅读全文
posted @ 2017-08-14 11:02 满月夜 阅读(4542) 评论(0) 推荐(0) 编辑
摘要: /** *(不会弹出页面,直接跳转,只能获取用户的openid) */function index(){ //公众号在微信的appid $appid = "" //重定向到回调地址 $redirect_uri =urlencode('http://www.xxx.com/xxx/getUserInf 阅读全文
posted @ 2017-08-14 11:01 满月夜 阅读(7254) 评论(0) 推荐(0) 编辑