<?php
/*
【版权声明】
本软件产品的版权归方倍工作室所有,受《中华人民共和国计算机软件保护条例》等知识产权法律及国际条约与惯例的保护。您获得的只是本软件的使用权。
您不得:
* 在未得到授权的情况下删除、修改本软件及其他副本上一切关于版权的信息;
* 销售、出租此软件产品的任何部分;
* 从事其他侵害本软件版权的行为。
如果您未遵守本条款的任一约定,方倍工作室有权立即终止本条款的执行,且您必须立即终止使用本软件并销毁本软件产品的任何副本。这项要求对各种拷贝形式有效。
您同意承担使用本软件产品的风险,在适用法律允许的最大范围内,方倍工作室在任何情况下不就因使用或不能使用本软件产品所发生的特殊的、意外的、非直接或间接的损失承担赔偿责任。即使已事先被告知该损害发生的可能性。
如使用本软件所添加的任何信息,发生版权纠纷,方倍工作室不承担任何责任。
方倍工作室对本条款拥有最终解释权。
CopyRight 2013 方倍工作室 All Rights Reserved
*/
define("TOKEN","weixin"$wechatObj = new wechatCallbackapiTest();
isset($_GET['echostr'])) {
$wechatObj->responseMsg();
}else{
valid();
}
class wechatCallbackapiTest
{
public function valid()
{
$echoStr = $_GET["echostr"];
if($this->checkSignature()){
echo $echoStr;
exit;
}
}
private checkSignature()
{
$signature = $_GET["signature"];
$timestamp = $_GET["timestamp"$nonce = $_GET["nonce"];
$token = TOKEN;
$tmpArr = array($token,1)">$timestamp,1)">$nonce);
sort($tmpArr);
$tmpStr = implode( );
sha1( $tmpStr );
if( $tmpStr == $signature ){
return ;
}{
false responseMsg()
{
$postStr = $GLOBALS["HTTP_RAW_POST_DATA"$postStr)){
$postObj = simplexml_load_string($postStr,'SimpleXMLElement',1)"> LIBXML_NOCDATA);
$RX_TYPE = trim($postObj->MsgType);
switch ($RX_TYPE)
{
case "text":
$resultStr = $this->receiveText($postObj);
break;
case "event":
$this->receiveEvent(default:
$resultStr = "";
;
}
$resultStr {
echo ""function receiveText($object)
{
$funcFlag = 0;
$contentStr = "你发送的内容为:".$object->Content;
$this->transmitText($object,1)">$contentStr,1)">$funcFlag;
}
function receiveEvent($contentStr = "";
Event)
{
case "subscribe":
$contentStr = "欢迎关注方倍工作室"case "unsubscribe":
case "CLICK":
EventKey)
{
case "company":
$contentStr[] = array("Title" =>"公司简介","Description" =>"方倍工作室提供移动互联网相关的产品及服务","PicUrl" =>"http://discuz.comli.com/weixin/weather/icon/cartoon.jpg","Url" =>"weixin://addfriend/pondbaystudio");
default:
array("Title" =>"默认菜单回复","Description" =>"您正在使用的是方倍工作室的自定义菜单测试接口",1)">;
}
default:
;
}
if (is_array($contentStr$this->transmitNews();
}{
);
}
;
}
function transmitText($content,1)">$textTpl = "<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[text]]></MsgType>
<Content><![CDATA[%s]]></Content>
<FuncFlag>%d</FuncFlag>
</xml>"$resultStr = sprintf($textTpl,1)">$object->FromUserName,1)">$object->ToUserName,1)">time(),1)">function transmitNews($arr_item,1)">)
{
//首条标题28字,其他标题39字
if(!$arr_item))
return;
$itemTpl = " <item>
<Title><![CDATA[%s]]></Title>
<Description><![CDATA[%s]]></Description>
<PicUrl><![CDATA[%s]]></PicUrl>
<Url><![CDATA[%s]]></Url>
</item>
"$item_str = ""foreach ($arr_item as $item)
$item_str .= $itemTpl,1)">$item['Title'],1)">$item['Description'],1)">$item['PicUrl'],1)">$item['Url']);
$newsTpl = "<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[news]]></MsgType>
<Content><![CDATA[]]></Content>
<ArticleCount>%s</ArticleCount>
<Articles>
$item_str</Articles>
<FuncFlag>%s</FuncFlag>
</xml>"$newsTpl,1)">count($arr_item),1)">;
}
}
?>