不验证权限,直接输出

class Test
{
public function index()
{
$signature=$_GET["signature"];
$timestamp=$_GET["timestamp"];
$nonce=$_GET["nonce"];
$echostr=$_GET["echostr"];


return $echostr;

}
}