Exemplo n.º 1
0
<?php

if (isset($argv[1])) {
    $sourceFile = $argv[1];
} else {
    die("Missing source file");
}
require_once 'MigrateDatabaseCore.php';
$migrateDatabaseObject = new MigrateDatabaseCore();
$migrateDatabaseObject->ImportDatabase($sourceFile);
Exemplo n.º 2
0
<?php

// Second variable will be the current directory the user runs the scripts from
$outputDirectory = $argv[1];
// The second variable in will be the scripts own first parameter. Should be the desired output file
// If this is not present, a default timestamp file will be created instead
if (isset($argv[2])) {
    $outputFile = $argv[2];
} else {
    $outputFile = date('Y-m-d_g-i-s') . '.json';
}
$outputPath = $outputDirectory . '/' . $outputFile;
require_once 'MigrateDatabaseCore.php';
$migrateDatabaseObject = new MigrateDatabaseCore();
$migrateDatabaseObject->ExportDatabase($outputPath);