| 12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\common\controllers;
- use app\models\WechatConfig;
- use app\utils\Wechat\Wechat;
- use yii\web\Controller;
- class AdCallbackController extends Controller
- {
- public function actionIndex() {
- // $code = get_params('code');
- debug_log('广告回调开始', 'ad.log');
- debug_log(post_params(), 'ad.log');
- debug_log(get_params(), 'ad.log');
- debug_log('广告回调结束', 'ad.log');
- return '你好!';
- return $response->send();
- }
- }
|