laravel4.2 command的使用

1、php artisan command:make TestCommand
执行完后,会在 app/commands 文件夹中生成 TopicMakeExcerptCommand.php 文件
2、注册命令
在 app/start/artisan.php 文件里面, 添加以下
Artisan::add(new TestCommand);

get();
        print_r($res);
    }

    /**
     * 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),
        );
    }

}

你可能感兴趣的:(laravel4.2 command的使用)