<?php
define('TOKEN','peter');
$signatur=$_GET['signature']; //Verschlüsselte Signatur
$timestamp=$_GET[' timestamp'];//Zeitstempel
$nonce=$_GET['nonce'];//Zufallszahl
$echostr=$_GET['echostr'];//Zufällige Zeichenfolge
//Array sortieren
$arr=[$timestamp,$nonce,TOKEN];
sort($arr,SORT_STRING);
$str=sha1(implode($arr));
//Diese Anfrage kommt von WeChat
if ($signature==$str){
echo $echostr;
}
?>
代码没写全