<?php
define('TOKEN','peter');
$signature=$_GET['signature']; //加密签名
$timestamp=$_GET['timestamp'];//时间戳
$nonce=$_GET['nonce'];//随机数
$echostr=$_GET['echostr'];//随机字符串
//对数组排序
$arr=[$timestamp,$nonce,TOKEN];
sort($arr,SORT_STRING);
$str=sha1(implode($arr));
//该请求是来源于微信
if($signature==$str){
echo $echostr;
}
?>
代码没写全