PHP code example of utopia-php / cli

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

    

utopia-php / cli example snippets



Utopia\CLI\CLI;
use Utopia\CLI\Console;
use Utopia\CLI\Adapters\Generic;
use Utopia\Http\Validator\Wildcard;

$cli = new CLI(new Generic());

$cli
    ->task('command-name')
    ->param('email', null, new Wildcard())
    ->action(function ($email) {
        Console::success($email);
    });

$cli->run();




use Utopia\CLI\CLI;
use Utopia\CLI\Console;
use Utopia\Http\Validator\Wildcard;

CLI::setResource('res1', function() {
    return 'resource 1';
})

CLI::init()
    inject('res1')
    ->action(function($res1) {
        Console::info($res1);
    });

CLI::error()
    ->inject('error')
    ->action(function($error) {
        Console::error('Error occurred ' . $error);
    });

$cli = new CLI();

$cli
    ->task('command-name')
    ->param('email', null, new Wildcard())
    ->action(function ($email) {
        Console::success($email);
    });

$cli->run();

Console::log('Plain Log'); // stdout

Console::success('Green log message'); // stdout

Console::info('Blue log message'); // stdout

Console::warning('Yellow log message'); // stderr

Console::error('Red log message'); // stderr

$stdout = '';
$stderr = '';
$stdin = '';
$timeout = 3; // seconds
$code = Console::execute('>&1 echo "success"', $stdin, $stdout, $stderr, $timeout);

echo $code; // 0
echo $stdout; // 'success'
echo $stderr; // ''

$stdout = '';
$stderr = '';
$stdin = '';
$timeout = 3; // seconds
$code = Console::execute('>&2 echo "error"', $stdin, $stdout, $stderr, $timeout);

echo $code; // 0
echo $stdout; // ''
echo $stderr; // 'error'



use Utopia\CLI\Console;

 echo "Hello World\n";
}, 1 /* 1 second */);
bash
composer 
bash
php script.php command-name [email protected]