web/lib/Zend/Console/Getopt.php
changeset 807 877f952ae2bd
parent 207 621fa6caec0c
child 1230 68c69c656a2c
equal deleted inserted replaced
805:5e7a0fedabdf 807:877f952ae2bd
    13  * obtain it through the world-wide-web, please send an email
    13  * obtain it through the world-wide-web, please send an email
    14  * to license@zend.com so we can send you a copy immediately.
    14  * to license@zend.com so we can send you a copy immediately.
    15  *
    15  *
    16  * @category   Zend
    16  * @category   Zend
    17  * @package    Zend_Console_Getopt
    17  * @package    Zend_Console_Getopt
    18  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    18  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    19  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    19  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    20  * @version    $Id: Getopt.php 22191 2010-05-17 21:50:14Z jan $
    20  * @version    $Id: Getopt.php 24593 2012-01-05 20:35:02Z matthew $
    21  */
    21  */
    22 
    22 
    23 /**
    23 /**
    24  * Zend_Console_Getopt is a class to parse options for command-line
    24  * Zend_Console_Getopt is a class to parse options for command-line
    25  * applications.
    25  * applications.
    78  * Example:  'abc:' means options '-a', '-b', and '-c'
    78  * Example:  'abc:' means options '-a', '-b', and '-c'
    79  * are legal, and the latter requires a string parameter.
    79  * are legal, and the latter requires a string parameter.
    80  *
    80  *
    81  * @category   Zend
    81  * @category   Zend
    82  * @package    Zend_Console_Getopt
    82  * @package    Zend_Console_Getopt
    83  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    83  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    84  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    84  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    85  * @version    Release: @package_version@
    85  * @version    Release: @package_version@
    86  * @since      Class available since Release 0.6.0
    86  * @since      Class available since Release 0.6.0
    87  *
    87  *
    88  * @todo  Handle params with multiple values, e.g. --colors=red,green,blue
    88  * @todo  Handle params with multiple values, e.g. --colors=red,green,blue