Tinywan
2015-10-26 19:35
<?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";
}
}
如果相等 必须写成 echo $echostr; 而不是 echo "Yes It is";
我也是 失败
请问你这
http://1.tinywanweixin.sinaapp.com/index.php/home/Index/index)
后面的/home/index/index 是什么意思? index.php不是文件吗 ?文件下怎么会还有东西 ,求助
换是不行啊!老师
PHP实现微信公众平台开发—提升篇
64946 学习 · 371 问题
相似问题