2017 © Pedro Peláez
 

library analysis

A MySQL log analysis tool

image

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

The README.md

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

  • MIT

The Versions

29/04 2018

dev-master

9999999-dev

A MySQL log analysis tool

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by Avatar lscho