17 lines
535 B
PHP
17 lines
535 B
PHP
<?php
|
|
namespace app\controllers\mini;
|
|
use app\controllers\channel\CommentController;
|
|
use yii;
|
|
use yii\data\ActiveDataProvider;
|
|
|
|
class MessageController extends CommentController {
|
|
public function actionIndex(){
|
|
$server = $this->wecaht;
|
|
$officialAccount= $server->officialAccount('wx2ab4c60f7f12db97','ZGaOaNj8_qhRQg5304RgadDKpuuINQrYR8PYZEw');
|
|
$server = $officialAccount->server;
|
|
$server->push(function ($message) {
|
|
return 'Welcome!';
|
|
});
|
|
return $server->serve();
|
|
}
|
|
} |