php微信接口验证写法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php微信接口验证写法相关的知识,希望对你有一定的参考价值。
<?php //获得接口认证 $timestamp = $_GET[‘timestamp‘]; $nonce = $_GET[‘nonce‘]; $token = ‘weixin‘; $signature = $_GET[‘signature‘]; //将参数字典化排序 $tmpArr = array($timestamp,$nonce,$token); sort($tmpArr); $judgeArr = implode(‘‘,$tmpArr); $judge = sha1($judgeArr); //判断是否符合 if($judge == $signature) { echo $_GET[‘echostr‘]; exit; }
以上是关于php微信接口验证写法的主要内容,如果未能解决你的问题,请参考以下文章
app与php后台接口登录认证验证(seesion和token)