13/04
2016
Parser csv files (database) from backup for uCoz sites.
Parser csv files (database) from backup for uCoz sites. :+1:
[ru] Парсер бекапов базы данных uCoz сайтов., (*1)
By composer:, (*2)
$ composer require saaaaaaaaasha/ubackupparser
Create a new file (for example: index.php) and insert code which is listed below:, (*3)
<?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:, (*4)
$ 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, (*5)