TestController.php 789 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace console\controllers;
  8. use yii\console\Controller;
  9. /**
  10. * This command echoes the first argument that you have entered.
  11. *
  12. * This command is provided as an example for you to learn how to create console commands.
  13. *
  14. * @author Qiang Xue <qiang.xue@gmail.com>
  15. * @since 2.0
  16. */
  17. class TestController extends Controller
  18. {
  19. /**
  20. * This command echoes what you have entered as the message.
  21. * @param string $message the message to be echoed.
  22. */
  23. public function actionIndex($message = 'hello world')
  24. {
  25. echo $message . "\n";
  26. }
  27. public function actionCreate() {
  28. echo 'advanced';
  29. }
  30. }