cli-barcode PHP
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
Gustavo Arnosti Neves caa18b3936 First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 9 лет назад
..
src/Ulrichsg/Getopt First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 9 лет назад
test/Ulrichsg/Getopt First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 9 лет назад
.gitignore First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 9 лет назад
.travis.yml First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 9 лет назад
CHANGELOG.md First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 9 лет назад
LICENSE First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 9 лет назад
Makefile First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 9 лет назад
README.markdown First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 9 лет назад
composer.json First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 9 лет назад
phpunit.xml First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 9 лет назад

README.markdown

Getopt.PHP

Getopt.PHP is a library for command-line argument processing. It supports PHP version 5.3 and above.

Features

  • Supports both short (eg. -v) and long (eg. --version) options
  • Option aliasing, ie. an option can have both a long and a short version
  • Collapsed short options (eg. -abc instead of -a -b -c)
  • Cumulative options (eg. -vvv)
  • Options may take optional or mandatory arguments
  • Two alternative notations for long options with arguments: --option value and --option=value
  • Collapsed short options with mandatory argument at the end (eg. -ab 1 instead of -a -b 1)

Documentation

License

Getopt.PHP is published under the MIT License.

Build Status