과정은 이렇습니다
WeChat에서 보낸 xml을 구문 분석하고 사용자가 보낸 콘텐츠 가져오기
내용을 바탕으로 답변
데이터베이스 내용을 읽고 문자열로 반환하고 정보를 회신합니다
그런데 데이터베이스 운영에 문제가 있는 것 같아 답변을 드릴 수 없습니다. 그 외 case '1'
등은 문제 없습니다.
getSql()
메서드의 각 단계에 echo '成功'
테스트를 추가하려고 했는데 아래에 설명했던 위치로 돌아가지 않습니다. 무슨 일인지 알려주실 수 있나요?
mysqli
지원 여부는 어떻게 확인하나요? 저는 CentOS 6.7 php 5.6phpinfo()
mysqli에 대해 표시되는 내용은 다음과 같습니다.
Windows의 PHP에는 활성화할 수 있는 확장 기능이 있다는 것을 알고 있습니다. 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>