PHP code example of hellpers / logger

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

    

hellpers / logger example snippets


/*
|------------------------------------------------------------------------------
| Пример
|------------------------------------------------------------------------------
|
| 1. Создаем объект Hellpers\Logger, передавая в него абсолютный путь к корню
| приложения;
| 2. Устанавливаем параметры (о них чуть ниже);
| 3. Метод send() - отправляет лог.
|
*/
$logger = new Logger(__DIR__);

$logger->path('temp/logs')
    ->file(Logger::d('Y-m-d') . '.txt')
    ->from('Имя сайта <127.0.0.1>')
    ->subject('Логирование')
    ->mail('test@localhost');

$logger->send('Текст сообщения');