You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BaseController.php 353 B

3 年之前
123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: admin
  5. * Date: 2017/6/5
  6. * Time: 15:17
  7. */
  8. namespace admin\controllers\base;
  9. use yii\web\Controller;
  10. class BaseController extends Controller
  11. {
  12. public function actionHome()
  13. {
  14. echo '管理后台1';
  15. die;
  16. }
  17. public function actionError()
  18. {
  19. echo 'error';die;
  20. }
  21. }