0
如何從基本模板中的控制器操作運行命令?Yii2基本:從控制器運行命令行動
我試圖How to run console command in yii2 from web
這種失敗:以上
public function actionTest(){
$oldApp = \Yii::$app;
$console = new \yii\console\Application([
'id' => 'basic-console',
'basePath' => '@app/commands',
'components' => [
'db' => $oldApp->db,
],
]);
\Yii::$app->runAction('hello/index');
\Yii::$app = $oldApp;
}
顯示我Unknown command: hello/index Did you mean "help/index"?
命令:
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace app\commands;
use yii\console\Controller;
/**
* This command echoes the first argument that you have entered.
*
* This command is provided as an example for you to learn how to create console commands.
*
* @author Qiang Xue <[email protected]>
* @since 2.0
*/
class HelloController extends Controller
{
/**
* This command echoes what you have entered as the message.
* @param string $message the message to be echoed.
*/
public function actionIndex($message = 'hello world')
{
echo $message . "\n";
}
}
請幫幫忙!