ZF-5872: add configuration to allow unconfigured options
Description
I have the little configuration:
$getopt = new Zend_Console_Getopt(array(
'deamon|d=s' => 'deamon mode',
'verbose|v' => 'Generate verbose messages',
'help|h' => 'display this help and exit'
));
but I would like to allow a user call with unconfigured options like this:
php myscript.php -v -a
This would nice to configure like:
$opts->setOption(Zend_Console_Getopt::CONFIG_ALLOWUNCONFIGURED, true);
Comments
Posted by Rob Allen (rob) on 2012-11-20T20:53:23.000+0000
Bulk change of all issues last updated before 1st January 2010 as "Won't Fix".
Feel free to re-open and provide a patch if you want to fix this issue.