PHP code example of ezeksoft / php-write-log
1. Go to this page and download the library: Download ezeksoft/php-write-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/ */
ezeksoft / php-write-log example snippets
use Ezeksoft\PHPWriteLog\{Log, Table, Row};
;
$log->write('datas/hoje.txt', "Data de hoje: %date");
use Ezeksoft\PHPWriteLog\{Log, Table, Row};
;
a_aprovada.txt', [
[
'index' => $log->index,
'status' => 'success',
'transaction_id' => '123456780001'
]
], [
'begin' => ['string' => "\n", 'skip_first_line' => true],
]);
$log->write('pagamento/gateway1/compra_aprovada.txt', [
[
'index' => $log->index,
'status' => 'success',
'transaction_id' => '123456780002'
]
], [
'begin' => ['string' => "\n", 'skip_first_line' => true],
]);
$log = new Log;
$log->write('pagamento/gateway1/compra_reembolsada.txt', [
[
'index' => $log->index,
'status' => 'refund',
'transaction_id' => '123456780001'
],
[
'index' => $log->index,
'status' => 'refund',
'transaction_id' => '123456780002'
]
], [
'end' => ['string' => "\n"]
]);
use Ezeksoft\PHPWriteLog\{Log, Table, Row};
;
ew Table;
$table->columns = ['INDEX', 'DATE', 'IP', 'USER-AGENT', 'HOST'];
$row = new Row;
$row->content = ['%index', '2022-07-09 00:00:00', '192.168.0.1', 'Firefox/100.0.1.1', 'https://stackoverflow.com'];
$table->rows[] = $row;
$row = new Row;
$row->content = ['%index', '2022-07-09 00:00:00', '192.168.0.112', 'Chrome/100.0.1.155', 'https://google.com'];
$table->rows[] = $row;
$row = new Row;
$row->content = ['%index', '2022-07-09', '192.168.0.112', 'Opera/1', 'https://reddit.com'];
$table->rows[] = $row;
$row = new Row;
$row->content = ['%index', '%date', '%ip', '%user_agent', '%host'];
$table->rows[] = $row;
$log->write('tabelas/acessos.txt', $table);
use Ezeksoft\PHPWriteLog\{Log, Table, Row};
;
ew Table;
$table->load('tabelas/acessos_add_linha.txt');
$row = new Row;
$row->content = ['%index', '%date', '127.0.0.1', 'Curl', 'localhost'];
$table->rows[] = $row;
$log->write($table->file->path, $table);
|INDEX| DATE | IP | USER-AGENT | HOST
|-----|-------------------|-------------|------------------|-------------------------
| 1 |2022-07-09 00:00:00| 192.168.0.1 |Firefox/100.0.1.1 |https://stackoverflow.com
| 2 |2022-07-09 00:00:00|192.168.0.112|Chrome/100.0.1.155| https://google.com
| 3 | 2022-07-09 |192.168.0.112| Opera/1 | https://reddit.com
| 4 |2022-07-09 05:44:38| 127.0.0.1 | Chrome/... | localhost