<?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;
##}?>