PHP code example of redgoose / console

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

    

redgoose / console example snippets



use redgoose\Console;

Console::log('hello world');


use redgoose\Console;

Console::log('hello world');

// basic
Console::log('hello world');

// multiple value
Console::log('apple', 'banana', 'mango');

// another types
Console::log('text', 123, ['foo' => 'bar'], (object)['foo' => 'bar']);

Console::warn('message');

Console::error('message');

Console::group('start', 'group-name'); // group start
Console::log((object)[ 'apple' => 'red' ]);
Console::log((object)[ 'banana' => 'yellow' ]);
Console::log((object)[ 'mango' => 'green' ]);
Console::group('end'); // group end