创建和使用Laravel 4命令

时间:2013-06-18 14:49:40

标签: command-line laravel laravel-4

编辑:找出我出错的地方并在最后找到答案

我正在尝试创建一个Laravel命令,我可以看到它在Laravel 3中的“任务”发生了很大的变化。但是我似乎无法让它运行。这些是我采取的步骤:

  

php artisan命令:make import

返回

  

命令已成功创建

然后创建命令目录中的文件并稍微修改以返回“Hello World”,如下所示:

use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;

class Import extends Command {

    /**
     * The console command name.
     *
     * @var string
     */
    protected $name = 'command:import';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Command description.';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return void
     */
    public function fire()
    {
        return 'Hello World';
    }

    /**
     * Get the console command arguments.
     *
     * @return array
     */
    protected function getArguments()
    {
        return array(
            array('example', InputArgument::REQUIRED, 'An example argument.'),
        );
    }

    /**
     * Get the console command options.
     *
     * @return array
     */
    protected function getOptions()
    {
        return array(
            array('example', null, InputOption::VALUE_OPTIONAL, 'An example option.', null),
        );
    }

}

但是当我尝试运行这样的命令时:

  

php artisan Import

我收到以下错误:

  

[InvalidArgumentException]命令“导入”未定义。

我已经尝试过使用和不使用大写字母,并将其命名为“ImportCommand”,因为文档将其命令命名为“FooCommand”,但没有运气。

非常感谢任何帮助。

4 个答案:

答案 0 :(得分:17)

实际上想通了这个。在文档的下方,它指出您必须使用以下方法在“app / start / artisan.php”中注册命令:

Artisan::add(new import);

您在命令类中提供的名称也很重要,因为您需要使用它来调用它。所以我应该这样称呼它:

php artisan command:import

最后一件事。 fire()返回的内容并不重要,要返回字符串,必须回显它们。

答案 1 :(得分:7)

试试这个。

protected function getArguments()
{
    return [];
}

protected function getOptions()
{
    return [];
} 

也在/app/start/artisan.php

中添加
Artisan::add(new ParseCommand);

然后在根目录上运行命令

./artisan command:import; 

答案 2 :(得分:2)

在较新的Laravel版本中,没有import命令。你只需要做以下两件事:

  1. app/start/artisan.php注册您的命令:

    Artisan::add(new Import);
    
  2. 在Artisan中运行命令:

    php artisan command:name Import
    

答案 3 :(得分:0)

由于使用过的措辞,对Artisan命令的误解不足。

在您的情况下,您选择:'command:import'作为您的某个“导入”命令的名称。

将其视为对象,使用方法。

如果“导入”有许多命令:

您可以使用命令名称> protected $ name ='import:csv';

另一个命令是> protected $ name ='import:txt';

和> protected $ name ='import:contacts';

所以具有“导入”性质的命令组织得更好。

当您提出要求时,您会看到您的命令被组织为单个实体。

如果没有,

并且您只有一个命令,然后为您的命令提供一个明确的名称。 protected $ name ='import';