PHP code example of rakit / console

1. Go to this page and download the library: Download rakit/console 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/ */

    

rakit / console example snippets




use Rakit\Console\App;

ew App;

// 2. Register commands
$app->command('hello {name}', 'Say hello to someone', function($name) {
    $this->writeln("Hello {$name}");
});

// 3. Run app
$app->run();

php cli hello "John Doe"

php cli list

php cli hello --help