2
我想這裏http://packages.zendframework.com/docs/latest/manual/en/modules/zend.console.routes.htmlZend框架2控制檯路線
描述的模塊配置我定義我的ZF2應用程序的一些控制檯路線:
'console' => array(
'router' => array(
'routes' => array(
'user-set-password' => array(
'options' => array(
'route' => 'user password <username> <password>',
'defaults' => array(
'controller' => 'User\Profile',
'action' => 'setpassword'
),
),
),
),
),
),
,但它似乎永遠比不上因爲它總是打印使用信息。像'test'這樣簡單的路線也不會匹配。 在最新版本ZF2
是我的錯,或者一個錯誤(當我寫了一些廢話到路徑參數,執行與加載模塊時Zend\Mvc\Router\Exception\InvalidArgumentException
所以它認識到控制檯路由失敗)?