過程是這樣的
解析微信寄來的xml,取得使用者傳送的內容
根據內容,進行判斷回覆
讀取資料庫內容,作為字串傳回,回覆訊息
但是好像在資料庫操作中出現了問題,怎麼都回覆不了。其它 case '1'
等等都沒問題。
我試圖在方法getSql()
中在每一步中添加 echo '成功'
測試,到下面我註釋的地方就不再返回,大神們看看怎麼回事?
怎麼查看支不支援
mysqli
呢?我是CentOS 6.7 php 5.6phpinfo()
顯示的關於mysqli 的內容如下:
我知道windows上的php裡面有個extension 開啟就可以了,linux 裡面的php設定是什麼樣的呢?
<code class="php">/* ------------------------------------- 判断信息事件,根据用户发来的信息内容,判断回复 $arr: 解析后的 微信发来的数据 -------------------------------------- */ public function rspText($arr){ switch (trim(strtolower($arr->Content))){ case '1':{ $this->replyMsg($arr,"success"); };break; case '2':{ $this->replyMsg($arr,$this->getSql()); };break; case 'time':{ $this->replyMsg($arr,date("Y-m-d")."\n".date("H:i:s")); };break; default: $this->replyMsg($arr,"看海哟"); } } /* ----------------------------------- 回复信息 $arr : 微信发来的 post 数据解析后的对象 $content: 要回复的内容,字符串 ----------------------------------- */ public function replyMsg($arr,$content="") { $toUser = $arr->ToUserName; $fromUser = $arr->FromUserName; $time = time(); $msgType = 'text'; $rspPatten = '<xml> <ToUserName><![CDATA[%s]]></ToUserName> <FromUserName><![CDATA[%s]]></FromUserName> <CreateTime>%s</CreateTime> <MsgType><![CDATA[%s]]></MsgType> <Content><![CDATA[%s]]></Content> </xml>'; $rspMsg = sprintf($rspPatten, $fromUser, $toUser, $time, $msgType, $content); echo $rspMsg; } //读取数据库内容 public function getSql(){ $host= "111.111.111.111"; $port = '1111'; $database = "wordpress"; $table = "wp_posts"; $user = "1111"; $passwd = "1111"; $sql = "select post_title from ".$table." limit 1,10"; //!!!!!!!!!到此处还是可以返回的,下面这句就不再返回了!!!!!!! $link = mysqli_connect($host,$user,$passwd,$database,$port); $tempResult = $link->query($sql); $str = ""; while($row = $tempResult->fetch_array()){ $str = $str.$row['post_title']; } $link->close(); return $str; //返回字符串 }</code>