zozlak / argparse
A humble PHP clone of Python's argparse library
Installs: 2 581
Dependents: 6
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=8.0
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-06 10:23:17 UTC
README
A humble PHP clone of Python's argparse.
Used to reduce my cognitive workload when switching between Python and PHP.
Implements only primary set of argparse features (see below) but strictly follows Python's argparse behavior.
API documentation
See the argparse docs with the following remarks:
- ArgumentParser constructor
supports only
prog
,description
,epilog
andexit-on-error
parameters.- Argument abbreviations are not implement.
- Almost all features of the add_argument() method are implemented.
Known discrepancies include:- If you want to define many names for a given argument, pass them as an array to the
name
parameter (it's impossible to implement it in PHP in exactly the same way it works in Python as PHP handles positional/named parameters in a slightly different way). - Lack of support for
%(prog)s
placeholder in thehelp
parameter. - Lack of support for
metavar
parameter being an array.
- If you want to define many names for a given argument, pass them as an array to the
- All features described under other utilities are not implemented.