修改回显方式

This commit is contained in:
邹景立 2023-11-06 22:41:55 +08:00
parent ce70444b6c
commit ef32690703

View File

@ -72,10 +72,11 @@ class BasicPushEvent
/** /**
* BasicPushEvent constructor. * BasicPushEvent constructor.
* @param array $options * @param array $options 配置参数
* @param boolean $showEchoStr 回显内容
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException
*/ */
public function __construct(array $options) public function __construct(array $options, $showEchoStr = true)
{ {
if (empty($options['appid'])) { if (empty($options['appid'])) {
throw new InvalidArgumentException("Missing Config -- [appid]"); throw new InvalidArgumentException("Missing Config -- [appid]");
@ -108,13 +109,27 @@ class BasicPushEvent
} }
$this->receive = new DataArray(Tools::xml2arr($this->postxml)); $this->receive = new DataArray(Tools::xml2arr($this->postxml));
} elseif ($_SERVER['REQUEST_METHOD'] == "GET" && $this->checkSignature()) { } elseif ($_SERVER['REQUEST_METHOD'] == "GET" && $this->checkSignature()) {
@ob_clean(); if ($showEchoStr && ob_clean()) {
echo $this->input->get('echostr'); echo($this->input->get('echostr'));
}
} else { } else {
throw new InvalidResponseException('Invalid interface request.', '0'); throw new InvalidResponseException('Invalid interface request.', '0');
} }
} }
/**
* 获取回显字串
* @return string
*/
public function getEchoStr()
{
if ($_SERVER['REQUEST_METHOD'] == "GET" && $this->checkSignature()) {
return $this->input->get('echostr');
} else {
return '';
}
}
/** /**
* 消息是否需要加密 * 消息是否需要加密
* @return boolean * @return boolean