1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php /** * @file CleanRemote.php * @brief DD Server Tools: */ if (!function_exists('__autoload')) { function __autoload($class_name) { require_once $class_name . '.php'; } } putenv("LD_LIBRARY_PATH=".getenv("LD_LIBRARY_PATH")); putenv("PATH=./:".getenv("DDBASEBIN").":/bin:/usr/bin"); set_include_path("./:".getenv("DATAMANAGER")); $baseMgr = new DDBaseMgr(); $baseMgr->cleanRemote(); ?>