收藏
回答

Token校验失败,请检查确认?


public function msg()

    {

        $signature = $_GET["signature"];

        $nonce = $_GET["nonce"];

        $timestamp = $_GET["timestamp"];

        $arr = array('abc',$timestamp,$nonce);

        sort($arr, SORT_STRING);

        $str = implode("",$arr);

        $str = sha1($str);

        if($str == $signature){

            return true;

        }else{     

      echo false;     

  } 

  }

回答关注问题邀请回答
收藏
登录 后发表内容
问题标签