PHP code example of phalcon / cli-options-parser
1. Go to this page and download the library: Download phalcon/cli-options-parser library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
phalcon / cli-options-parser example snippets
use Phalcon\Cop\Parser;
$parser = new Parser();
// Parse params from the $argv
$params = $parser->parse($argv);
// Parse params from the $_SERVER['argv']
$params = $parser->parse();
// After parsing input, Parser provides a way to gets booleans:
$parser->getBoolean('foo');
// Get param `foo` or return TRUE as a default value
$parser->getBoolean('foo', true);