library analysis
A MySQL log analysis tool
lscho/analysis
A MySQL log analysis tool
- Sunday, April 29, 2018
- by lscho
- Repository
- 1 Watchers
- 1 Stars
- 3 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
A MySQL log analysis tool, (*1)
Install
composer require lscho/analysis dev-master
, (*2)
Use
<?php
require_once __DIR__ . '/vendor/autoload.php';
use Analysis\MysqlBinLog;
$MysqlBinLog = MysqlBinLog::getInstance([
'host' => '127.0.0.1',
'username' => 'root',
'password' => '123456',
'database' => 'test',
]);
$data = $MysqlBinLog->getData();
//print_r($data);
License
dev-master
9999999-dev
A MySQL log analysis tool
Sources
Download
MIT
The Requires
by
lscho