PHP code example of webtrendi / clapp
1. Go to this page and download the library: Download webtrendi/clapp 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/ */
webtrendi / clapp example snippets
// Define accepted arguments
$definitions = new \Clapp\CommandLineArgumentDefinition(array(
"help|h" => "Shows help message",
"message|m=s" => "Input message",
"verbose|v+" => "Set level of verbose output",
));
// Filter arguments based and validate according to definitions
$filter = new \Clapp\CommandArgumentFilter($definitions, $argv);
// Retrieve parameter if set
if ($filter->getParam('h') !== false) {
echo $definitions->getUsage();
exit();
} //if