微信接口示例

  YII框架
<?php

namespace app\controllers;

use Yii;
use yii\filters\AccessControl;
use yii\web\Controller;
use yii\filters\VerbFilter;
use app\models\LoginForm;
use app\models\ContactForm;

define("TOKEN", "weixin");
define("appID", "wx2ad6fc9c555e894a");
define("secret", "cdd1bf151ace03dca5c742ee80d5dee5");

class IndexController extends Controller
{
    //获取code
    public function actionIndex(){
        $state = yii::$app->request->get('state');
        $redirect_uri = urlencode("http://112.74.28.89/ltt/basic/web/index.php?r=index/token");
        $url = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=".appID."&redirect_uri=".$redirect_uri."&response_type=code&scope=snsapi_base&state=".$state."#wechat_redirect";
        return $this->redirect($url);
    }
    //获取token
    public function actionToken(){
        $code = yii::$app->request->get('code');
        //echo $code;die;
        $state = yii::$app->request->get('state');
        $url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=".appID."&secret=".secret."&code=".$code."&grant_type=authorization_code";
        $json = file_get_contents($url);
        //echo $json;die;
        $data = json_decode($json,true);
        $openid = $data['openid'];
        $db = yii::$app->db;
        $sql = "select * from wx where user_openid = '$state' and other_openid = '$openid'";
        $data = $db->createCommand($sql)->queryOne();
        if (empty($data)) {
            $sql2 = "insert into wx values(null,'$state','$openid')";
            $res = $db->createCommand($sql2)->execute();
            echo "<center><h1><font color='red'>谢谢支持</font></h1></center>";
        }else{
            echo "<center><h1><font color='red'>已经投票了</font></h1></center>";
        }
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值