主页 > 知识库 > php微信公众号开发之校园图书馆

php微信公众号开发之校园图书馆

热门标签:Linux服务器 银行业务 Mysql连接数设置 阿里云 服务器配置 科大讯飞语音识别系统 电子围栏 团购网站

本文实例为大家分享了php微信公众号图书馆的具体代码,供大家参考,具体内容如下

图书来源:山东理工大学图书馆书目检索系统

搜索书名返回是xml格式数据:

核心代码如下:

$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
  $fromUsername = $postObj->FromUserName;
  $toUsername = $postObj->ToUserName;
  $keyword = trim($postObj->Content);
  $time = time();
  $textTpl = "xml>
     ToUserName>![CDATA[%s]]>/ToUserName>
     FromUserName>![CDATA[%s]]>/FromUserName>
     CreateTime>%s/CreateTime>
      MsgType>![CDATA[news]]>/MsgType>
      ArticleCount>3/ArticleCount>
      Articles>
      item>
        Title>![CDATA[%s]]>/Title> 
        Description>![CDATA[s]]>/Description>
        PicUrl>![CDATA[url]]>/PicUrl>
       Url>![CDATA[url]]>/Url>
      /item>
     item>
    Title>![CDATA[%s]]>/Title>
    Description>![CDATA[s]]>/Description>
    PicUrl>![CDATA[url]]>/PicUrl>
    Url>![CDATA[url]]>/Url>
    /item>
     item>
       Title>![CDATA[%s]]>/Title>
       Description>![CDATA[s]]>/Description>
       PicUrl>![CDATA[url]]>/PicUrl>
       Url>![CDATA[url]]>/Url>
     /item>
    /Articles>
   FuncFlag>1/FuncFlag>
  /xml>";    

 $url="http://222.206.65.12/opac/search_rss.php?dept=ALLtitle={$keyword}doctype=ALLlang_code=ALLmatch_flag=forwarddisplaypg=20showmode=listorderby=DESCsort=CATA_DATEonlylendable=no";

 $fa=file_get_contents($url);
 $f=simplexml_load_string($fa);
 $da1=$f->channel->item[0]->title;
 $da2=$f->channel->item[1]->title;
 $da3=$f->channel->item[2]->title;  

 $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time,$da1,$da2,$da3);
echo $resultStr;

index.php整体代码如下:

?php
/**
 * wechat php test
 */

//define your token
define("TOKEN", "weixin");
$wechatObj = new wechatCallbackapiTest();
$wechatObj->responseMsg();

class wechatCallbackapiTest
{
 public function valid()
 {
  $echoStr = $_GET["echostr"];

  //valid signature , option
  if($this->checkSignature()){
   echo $echoStr;
   exit;
  }
 }

 public function responseMsg()
 {
  //get post data, May be due to the different environments
  $postStr = $GLOBALS["HTTP_RAW_POST_DATA"];

  //extract post data
  if (!empty($postStr)){

    $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
    $fromUsername = $postObj->FromUserName;
    $toUsername = $postObj->ToUserName;
    $keyword = trim($postObj->Content);
    $time = time();
    $textTpl = "xml>
       ToUserName>![CDATA[%s]]>/ToUserName>
       FromUserName>![CDATA[%s]]>/FromUserName>
       CreateTime>%s/CreateTime>
        MsgType>![CDATA[news]]>/MsgType>
        ArticleCount>3/ArticleCount>
        Articles>
         item>
          Title>![CDATA[%s]]>/Title> 
          Description>![CDATA[s]]>/Description>
          PicUrl>![CDATA[url]]>/PicUrl>
          Url>![CDATA[url]]>/Url>
         /item>
         item>
          Title>![CDATA[%s]]>/Title>
          Description>![CDATA[s]]>/Description>
          PicUrl>![CDATA[url]]>/PicUrl>
          Url>![CDATA[url]]>/Url>
         /item>
         item>
          Title>![CDATA[%s]]>/Title>
          Description>![CDATA[s]]>/Description>
          PicUrl>![CDATA[url]]>/PicUrl>
          Url>![CDATA[url]]>/Url>
         /item>
        /Articles>
        FuncFlag>1/FuncFlag>
       /xml>";    

     $url="http://222.206.65.12/opac/search_rss.php?dept=ALLtitle={$keyword}doctype=ALLlang_code=ALLmatch_flag=forwarddisplaypg=20showmode=listorderby=DESCsort=CATA_DATEonlylendable=no";

     $fa=file_get_contents($url);
     $f=simplexml_load_string($fa);
     $da1=$f->channel->item[0]->title;
     $da2=$f->channel->item[1]->title;
     $da3=$f->channel->item[2]->title;  

     $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time,$da1,$da2,$da3);
     echo $resultStr;


  }else {
   echo "";
   exit;
  }
 }

 private function checkSignature()
 {
  $signature = $_GET["signature"];
  $timestamp = $_GET["timestamp"];
  $nonce = $_GET["nonce"]; 

  $token = TOKEN;
  $tmpArr = array($token, $timestamp, $nonce);
  sort($tmpArr);
  $tmpStr = implode( $tmpArr );
  $tmpStr = sha1( $tmpStr );

  if( $tmpStr == $signature ){
   return true;
  }else{
   return false;
  }
 }
}

?>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
  • php微信公众号开发模式详解
  • PHP实现微信公众号验证Token的示例代码
  • php实现微信公众号创建自定义菜单功能的实例代码
  • PHP实现的微信公众号扫码模拟登录功能示例
  • 微信公众平台开发教程③ PHP实现微信公众号支付功能图文详解
  • php微信公众号开发之快递查询
  • php微信公众号开发之欢迎老朋友
  • php微信公众号开发之关键词回复
  • php微信公众号开发之图片回复
  • 基于PHP的微信公众号的开发流程详解

标签:大理 江苏 蚌埠 枣庄 衡水 萍乡 广元 衢州

巨人网络通讯声明:本文标题《php微信公众号开发之校园图书馆》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266