照着老师做的微信链接接口为什么就是失败?

<? php

//将timestamp,nonce,token按字典序排序

$timestamp  = $_GET['timestamp'];

$nonce    = $_GET['nonce'];

$token    = 'TOKEN';

$signature = $_GET['signature'];

$echostr = $_GET['echostr']

$arr = array($timestamp,$nonce,$token);

sort($arr,SORT_STRING);

//将排序后的数组拼接成字符串

$tmpstr =implode($arr);

$tmpstr =sha1($tmpstr);

//将加密后的字符串进行对比

if($tmpstr == $signature)

{

echo $echostr;

exit;

}


Guard丿星魂
浏览 982回答 1
1回答

Guard丿星魂

看到缺了一个分号,但是加上还是没用
打开App,查看更多内容
随时随地看视频慕课网APP