12345678910111213141516171819202122232425262728 |
- <?php
- namespace backend\controllers;
- use backend\base\CommonController;
- use backend\base\Help;
- use Yii;
- class WatermarkController extends CommonController
- {
- public function actionIndex()
- {
- return $this->render('index');
- }
- public function actionAa()
- {
- p($_POST);
- p($_FILES);
- }
-
- }
|