Skip to content

Latest commit

 

History

20 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

argumentor

simple and easy PHP library for passing arguments and options to a PHP script from command line.

Installation

composer require simonepm/argumentor

Usage

php example.php testArgument -o testOption

Example

<?php

    require_once "vendor/autoload.php";

    use Simonepm\Argumentor\Command;
    use Simonepm\Argumentor\Argument;
    use Simonepm\Argumentor\Option;

    $command = new Command();

    $command->RegisterArgument("argument");
    $command->RegisterOption("option", "o");

    $command->Exec(function(Argument $argument, Option $option) {

        echo $argument->Get("argument") . PHP_EOL; // "testArgument\n"

        echo $option->Get("option") . PHP_EOL; // "testOption\n"

    });
    
?>

About

Pass arguments and options easily from command line to PHP scripts. Featured on Composer Packagist.

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages