| 123456789101112131415161718192021 |
- <?php
- namespace client\controllers;
- use biz\message\services\InformAdminService;
- use common\components\util;
- use Yii;
- class TestController extends BaseController
- {
-
- public function actionRabbit()
- {
- InformAdminService::addInform(12358, 'goodsSold', ['price' => 20]);
- util::end();
- $producer = Yii::$app->rabbitmq->getProducer('producerCommon');
- $msg = serialize(['user_id' => rand(111, 999)]);
- $producer->publish($msg, 'exCommon', 'routeCommon');
- }
-
- }
|