예제 #1
0
<?php

namespace Geneanet;

require_once __DIR__ . "/autoload.php";
error_reporting(E_ALL);
if (isset($argv[1])) {
    $file = $argv[1];
} else {
    usage();
    exit(0);
}
$writer = new GedcomWriter($cnf = null);
echo $writer->pretty(file_get_contents($file));
# echo $writer->unpretty($writer->pretty(file_get_contents($file)));