saaaaaaaaasha / ubackupparser
Parser csv files (database) from backup for uCoz sites.
1.0.0
2016-03-23 07:59 UTC
Requires
- php: ^5.0
This package is not auto-updated.
Last update: 2025-05-08 01:40:43 UTC
README
Parser csv files (database) from backup for uCoz sites. 👍
[ru] Парсер бекапов базы данных uCoz сайтов.
Installation
By composer:
$ composer require saaaaaaaaasha/ubackupparser
Usage
Create a new file (for example: index.php) and insert code which is listed below:
<?php require "vendor/autoload.php"; //not necessary $modules = [ "PhotoCategories", "Load" ]; try { // get App instance $app = \ubackupparser\App::getInstance()->init( $modules ); // get parser and run convert listed modules $parser = $app->getParser(); $parser = $parser->run(); // get results array print_r( $parser->get() ); } catch( \Exception $e ) { \ubackupparser\Util\Logger::run( $e->getMessage() ); } // or short version (modules load from config file) /* print json_encode(\ubackupparser\App::getInstance() ->init() ->getParser() ->run() ->get()); */
and run script:
$ php index.php
You can change some options (like path to dump folder, path to log file etc) in config file - /ubackupparser/src/config.php