公众号后台收不到客户发送的消息
发布于 5 年前 作者 xiongli 4630 次浏览 来自 问答

使用这种接受方式

$postStr = $GLOBALS["HTTP_RAW_POST_DATA"];
if (!empty($postStr)){
   return simplexml_load_string($postStr,'SimpleXMLElement',LIBXML_NOCDATA);
}

接收用户发送来的信息

$con=$this->wx->getMessage();
file_put_contents('a.php',var_export($con,true));

创建新文件后,文件是空的

无法接受到用户发送来的信息

回到顶部