0
我正在做一個蛋糕shell腳本。當我使用一些命名參數,例如:如何訪問CakePHP Shell參數?
--username=world
我怎樣才能得到「用戶名」參數/值?
我的代碼如下所示:
class InviteShell extends AppShell
{
//... here are my methods.
public function getOptionParser()
{
$parser = parent::getOptionParser();
$parser->addArgument('username', array(
'help' => 'Send E-Mail to which user?'
))->addOption('method', array(
'short' => 'm',
'help' => __('The specific method you want help on.')
))->description(__('Lookup doc block comments for classes in CakePHP'));
return $parser;
}
}
,是什麼樣的說法和選項之間的區別?而且我怎樣才能在我的代碼中讀取這些選項?
工作的一件事是我可以讀取$ this-> args數組,但是這沒有命名。所有我能做的就是通過指數得到ARG,如:$這個 - > ARGS [0]
我使用的蛋糕2.9