WatermarkController.php 491 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: xiaofeng
  5. * Date: 2018/3/13
  6. * Time: 上午8:46
  7. */
  8. namespace backend\controllers;
  9. use backend\base\CommonController;
  10. use backend\base\Help;
  11. use Yii;
  12. class WatermarkController extends CommonController
  13. {
  14. public function actionIndex()
  15. {
  16. return $this->render('index');
  17. }
  18. public function actionAa()
  19. {
  20. p($_POST);
  21. p($_FILES);
  22. }
  23. }