1. Go to this page and download the library: Download popphp/pop-log 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/ */
popphp / pop-log example snippets
use Pop\Log\Logger;
use Pop\Log\Writer\File;
$log = new Logger(new File(__DIR__ . '/logs/app.log'));
$log->info('Just a info message');
$log->alert('Look Out! Something serious happened!');
use Pop\Log\Logger;
use Pop\Log\Writer\File;
$log = new Logger(new File(__DIR__ . '/logs/app.csv'));
$context = [
'name' => 'my-log-entry',
'timestamp' => date('Y-m-d H:i:s')
];
$log->info('Just a info message', $context);
use Pop\Log\Logger;
use Pop\Log\Writer\Mail;
use Pop\Mail\Mailer;
use Pop\Mail\Transport\Sendmail;
$emails = ['[email protected]', '[email protected]'];
$options = [
'subject' => 'Custom Log Entry:',
'cc' => '[email protected]'
];
$mailer = new Mailer(new Sendmail());
$log = new Logger(new Mail($mailer, $emails, $options));
$log->info('Just a info message');
$log->alert('Look Out! Something serious happened!');
use Pop\Db\Db;
use Pop\Log\Logger;
use Pop\Log\Writer\Database;
$db = Db::connect('sqlite', __DIR__ . '/logs/.htapplog.sqlite');
$log = new Logger(new Database($db, 'system_logs'));
$log->info('Just a info message');
$log->alert('Look Out! Something serious happened!');
use Pop\Log\Logger;
use Pop\Log\Writer;
use Pop\Http\Client;
use Pop\Http\Auth;
$client = new Client(
'https://logs.mydomain.com/',
['method' => 'POST'],
Auth::createKey('LOG_API_KEY')
);
$log = new Logger(new Writer\Http($client);
$log->info('Just a info message');
$log->alert('Look Out! Something serious happened!');
use Pop\Log\Logger;
use Pop\Log\Writer\File;
$log = new Logger(new File(__DIR__ . '/logs/app.log'));
$context = [
'name' => 'my-log-entry',
'timestamp' => date('Y-m-d H:i:s')
];
$log->info('Just a info message', $context);
use Pop\Log\Logger;
use Pop\Log\Writer\File;
$prodLog = new File(__DIR__ . '/logs/app_prod.log');
$devLog = new File(__DIR__ . '/logs/app_dev.log');
$prodLog->setLogLimit(3); // Log only ERROR (3) and above
$devLog->setLogLimit(6); // Log only INFO (6) and above
$log = new Logger([$prodLog, $devLog]);
$log->alert('Look Out! Something serious happened!'); // Will write to both writers
$log->info('Just a info message'); // Will write to only app_dev.log