我以前能提交成功现在为什么不行了?

来源:4-6 提交验证接口

西红柿卫士

2017-09-29 10:22

<?php

namespace Home\Controller;

use Common\Model\ShowModel;

use Think\Controller;

class IndexController extends Controller {

    public function index(){

        $nonce =$_GET['nonce'];

        $token ='18817797900';

        $timestamp=$__GET['timestamp'];

        $echostr=$__GET['echostr'];

        $signature=$__GET['signature'];

        //形成数组,然后按字典排序

        $array = array();

        $array = array($nonce,$timestamp,$token);

        sort($array);

        $str = sha1(implode('',$array));

        if($str ==$signature){

            echo $echostr;

            exit;

        }

        

    }

    public function reponseMsg(){

        $postArr = $GLOBALS['HTTP_RAW_POST_DATA'];

    }

}


写回答 关注

3回答

  • 飘进水yEs
    2018-07-01 01:12:37

    查看文件编码

    必须是utf-8连utf-8+DOM都不行

  • 西红柿卫士
    2017-10-09 08:52:21

    $echostr=$__GET['echostr'];

    $echostr=$__GET['echostr']; 有这句啊 没问题啊

  • 慕丝0684799
    2017-10-08 17:27:49

    $echostr=$__GET['echostr'];

    西红柿卫士

    $echostr=$__GET['echostr']; $echostr=$__GET['echostr']; 有这句啊 没问题啊

    2017-10-09 08:52:42

    共 1 条回复 >

PHP实现微信公众平台开发—基础篇

由浅入深一起玩转微信公众平台开发,课程由浅入深,内容详实

101983 学习 · 149 问题

查看课程

相似问题