cli-barcode PHP
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
Gustavo Arnosti Neves 4ac9d00872 v1.0.6 FixFixFix - Fix a lot of Stuff! Fix to PNG and JPG Barcodes; Fix to color parsing; Converts color to RGB if JPG or PNG; Added Verbose execution; Added double-verbose option for timestamp on each line; Patch to upstream ulrichsg/getopt-php so we can have parameters at the end! YES!; Tested color, width, height on all formats (jpg,png,svg,html); Validate Hex color, # is optional but must have 3 or 6 hex numbers (alphanumeric is tested); -q quiet mode implemented, will suppress even error messages; Added extra help info with 2-liner possibility 9 yıl önce
..
src/Ulrichsg/Getopt v1.0.6 FixFixFix - Fix a lot of Stuff! Fix to PNG and JPG Barcodes; Fix to color parsing; Converts color to RGB if JPG or PNG; Added Verbose execution; Added double-verbose option for timestamp on each line; Patch to upstream ulrichsg/getopt-php so we can have parameters at the end! YES!; Tested color, width, height on all formats (jpg,png,svg,html); Validate Hex color, # is optional but must have 3 or 6 hex numbers (alphanumeric is tested); -q quiet mode implemented, will suppress even error messages; Added extra help info with 2-liner possibility 9 yıl önce
test/Ulrichsg/Getopt First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 10 yıl önce
.gitignore First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 10 yıl önce
.travis.yml First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 10 yıl önce
CHANGELOG.md First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 10 yıl önce
LICENSE First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 10 yıl önce
Makefile First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 10 yıl önce
README.markdown First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 10 yıl önce
composer.json First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 10 yıl önce
phpunit.xml First commit, creates barcodes from cli using PHP. Supports many formats and barcode encodings. 10 yıl önce

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