微信公众号服务器配置(校验)

zhangwentaohh 2020-05-29

public function serve(){    $echoStr = $_GET["echostr"];    if($this->checkSignature()){        echo $echoStr;        exit;    }}//检查签名private function checkSignature(){    $signature = $_GET["signature"];    $timestamp = $_GET["timestamp"];    $nonce = $_GET["nonce"];    $token = "xxxxxxxxxxx";    $tmpArr = array($token, $timestamp, $nonce);    sort($tmpArr, SORT_STRING);    $tmpStr = implode($tmpArr);    $tmpStr = sha1($tmpStr);    if($tmpStr == $signature){        return true;    }else{        return false;    }}

相关推荐

bjkamui / 0评论 2019-11-04
MingoJiang / 0评论 2019-10-29