26 lines
354 B
PHP
26 lines
354 B
PHP
<?php
|
|
namespace app\api\wxapi\wxmsg;
|
|
|
|
|
|
use app\api\wxapi\Base;
|
|
use app\api\wxapi\wxmsg\Reply;
|
|
|
|
/* 接收text消息
|
|
* */
|
|
class ReceiveText extends Base{
|
|
public $BaseObject;
|
|
|
|
public function run(){
|
|
|
|
$this->send();
|
|
}
|
|
|
|
//回复消息
|
|
public function send(){
|
|
$Reply=new Reply();
|
|
$Reply->BaseObject=$this->BaseObject;
|
|
$Reply->run();
|
|
}
|
|
|
|
}
|