mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 09:52:47 +08:00
修改回显方式
This commit is contained in:
parent
ce70444b6c
commit
ef32690703
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user