token驗(yàn)證失敗(http://1.tinywanweixin.sinaapp.com/index.php/home/Index/index)
<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
? ? public function index(){
? ? ? ??
? ? ? ? $nonce = $_GET["nonce"];
? ? ? ? $token = "weixin";
? ? ? ? $timestamp = $_GET["timestamp"];
? ? ? ? $echostr = $_GET["echostr"];
? ? ? ? $signature = $_GET["signature"];
? ? ? ??
? ? ? ? $tmpArr = array($nonce, $timestamp, $token);
? ? ? ? sort($tmpArr);
? ? ? ??
? ? ? ? $tmpStr = implode( $tmpArr );
? ? ? ? $tmpStr = sha1( $tmpStr );
? ? ? ??
? ? ? ? if( $tmpStr == $signature )
? ? ? ? {
? ? ? ? ? ? echo "Yes It is";
? ? ? ? }else{
? ? ? ? ? ? echo "false";
? ? ? ? }
? ? }
? ??
? ? public function show(){
? ? echo "001212";
? ??
? ? }
}
2015-10-28
2016-06-01
我也是 失敗
2015-12-13
請(qǐng)問(wèn)你這
http://1.tinywanweixin.sinaapp.com/index.php/home/Index/index)
后面的/home/index/index 是什么意思? index.php不是文件嗎 ?文件下怎么會(huì)還有東西 ,求助
2015-10-28
換是不行??!老師