You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ryzom-core/ryzom/server/www/tools/getfromshard.php

15 lines
288 B
PHP

<?php
include_once(dirname(__DIR__).'/libs/admin_modules_itf.php');
$args = array_slice($argv, 1);
$ret = queryShard('egs', implode(" ", $args));
if ($ret['status']) {
$final = explode("\n", $ret['raw'][0]);
array_shift($final);
array_shift($final);
echo implode("\n", $final);
}