cakephp控制台脚本Console/shell使用

Posted aworkstory

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cakephp控制台脚本Console/shell使用相关的知识,希望对你有一定的参考价值。

配置shell脚本的参数arg和选项opt

官网上的方式是在shell中重写 getOptionParser() 。

public function getOptionParser() {
    $parser = parent::getOptionParser();
    $parser->addArgument(‘type‘, array(
        ‘help‘ => ‘Either a full path or type of class.‘, ‘required‘=>true
    ))->addArgument(‘className‘, array(
        ‘help‘ => ‘A Cakephp core class name (e.g: Component, htmlHelper).‘
    ))->addOption(‘method‘, array(
        ‘short‘ => ‘m‘,
        ‘help‘ => __(‘The specific method you want help on.‘)
    ))->description(__(‘Lookup doc block comments for classes in CakePHP.‘));
    return $parser;
}

使用 docker exec -it dnmp-php56 /ubox/apps/charts/app/Console/cake test --h 显示帮助,不执行脚本
运行结果如下:

Lookup doc block comments for classes in CakePHP.

Usage:
cake test [-h] [-v] [-q] [-h] [<type>] [<className>]

Options:

--help, -h     Display this help.
--verbose, -v  Enable verbose output.
--quiet, -q    Enable quiet output.
--method, -m  The specific method you want help on.

Arguments:

type  Either a full path or type of class. (optional)
className  A CakePHP core class name (e.g: Component, HtmlHelper). (optional)

Arguments 参数是指定位置顺序的,而 Options 和位置无关。


以上是关于cakephp控制台脚本Console/shell使用的主要内容,如果未能解决你的问题,请参考以下文章

更改加密 cakephp 脚本的 url slug

jQuery脚本在CakePHP中不起作用

我在 cakephp3 上的脚本太长而无法加载

cakephp 3 中的控制器未运行

CakePHP:如何控制对可下载文件的访问

如何使用 CakePHP 的控制台烘焙 UTF-8 文件?