PHP code example of daijulong / console

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

    

daijulong / console example snippets


$  composer 

"daijulong/console": "^1.1"

$console = \Daijulong\Console\Console::instance();

$console->text('I am a message!');

$console->text('I am a message with red foreground color and yellow background color.', 'red', 'yellow');

$console->success('I am a success message.');

$name = $console->ask('Who are you?');

$bool = $console->yesOrNo('Are you going to give me your money?');

$console->colored('I am a message with red foreground color and yellow background color.', 'red', 'yellow');