公众号后台收不到客户发送的消息
使用这种接受方式
$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));
创建新文件后,文件是空的
无法接受到用户发送来的信息