php-cli icon indicating copy to clipboard operation
php-cli copied to clipboard

PHP library to build command line tools

Results 2 php-cli issues
Sort by recently updated
recently updated
newest added
trafficstars

With the following command: command --myopt=value1 --myopt=value2 Calling: $options->getOpt('myopt') would return an array containing all values: ['value1', 'value2'] instead, it currently returns a string containing the last value: 'value2'