PHP code example of itedo / itedo-logger

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

    

itedo / itedo-logger example snippets


PHP:        ^7.0
Laravel:   ^6.0


return [
    //是否开启true false
    'logger' => 'true',
    //驱动 mongodb | file | mysql(后续完善)
    'driver' => 'mongodb',
    //driver是mongodb 时 需要填写表名
    'mongo_table' => 'ite_logger'
];