token,답장 그림\텍스트,푸 시 메 시 지 를 검증 하 는 실 용적 인 위 챗 클래스 phop 코드
<?php
class Wechat{
private $data = array();
public function __construct($token){
$this -> auth($token, $wxuser) || exit;
if(IS_GET){
echo($_GET['echostr']);
exit;
}else{
$xml = file_get_contents("php://input");
$xml = new SimpleXMLElement($xml);
//file_put_contents('/var/log/test.txt', $xml,FILE_APPEND);
$xml || exit;
foreach ($xml as $key => $value){
$this -> data[$key] = strval($value);
}
}
}
public function request(){
return $this -> data;
}
public function response($content, $type = 'text', $flag = 0){
$this -> data = array('ToUserName' => $this -> data['FromUserName'], 'FromUserName' => $this -> data['ToUserName'], 'CreateTime' => NOW_TIME, 'MsgType' => $type);
$this -> $type($content);
$this -> data['FuncFlag'] = $flag;
$xml = new SimpleXMLElement('<xml></xml>');
$this -> data2xml($xml, $this -> data);
exit($xml -> asXML());
}
private function text($content){
$this -> data['Content'] = $content;
}
private function music($music){
list($music['Title'], $music['Description'], $music['MusicUrl'], $music['HQMusicUrl']) = $music;
$this -> data['Music'] = $music;
}
private function news($news){
$articles = array();
foreach ($news as $key => $value){
list($articles[$key]['Title'], $articles[$key]['Description'], $articles[$key]['PicUrl'], $articles[$key]['Url']) = $value;
if($key >= 9){
break;
}
}
$this -> data['ArticleCount'] = count($articles);
$this -> data['Articles'] = $articles;
}
private function transfer_customer_service($content){
$this -> data['Content'] = '';
}
private function data2xml($xml, $data, $item = 'item'){
foreach ($data as $key => $value){
is_numeric($key) && $key = $item;
if(is_array($value) || is_object($value)){
$child = $xml -> addChild($key);
$this -> data2xml($child, $value, $item);
}else{
if(is_numeric($value)){
$child = $xml -> addChild($key, $value);
}else{
$child = $xml -> addChild($key);
$node = dom_import_simplexml($child);
$node -> appendChild($node -> ownerDocument -> createCDATASection($value));
}
}
}
}
private function auth($token){
$signature = $_GET["signature"];
$timestamp = $_GET["timestamp"];
$nonce = $_GET["nonce"];
$tmpArr = array($token, $timestamp, $nonce);
sort($tmpArr, SORT_STRING);
$tmpStr = implode($tmpArr);
$tmpStr = sha1($tmpStr);
if(trim($tmpStr) == trim($signature)){
return true;
}else{
return false;
}
return true;
}
}
?>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laravel - 변환된 유효성 검사 규칙으로 API 요청 제공동적 콘텐츠를 위해 API를 통해 Laravel CMS에 연결하는 모바일 앱(또는 웹사이트) 구축을 고려하십시오. 이제 앱은 CMS에서 번역된 콘텐츠를 받을 것으로 예상되는 다국어 앱이 될 수 있습니다. 일반적으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.