本文整理匯總了PHP中XoopsLocale::getFormatMediumDate方法的典型用法代碼示例。如果您正苦於以下問題:PHP XoopsLocale::getFormatMediumDate方法的具體用法?PHP XoopsLocale::getFormatMediumDate怎麽用?PHP XoopsLocale::getFormatMediumDate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類XoopsLocale
的用法示例。
在下文中一共展示了XoopsLocale::getFormatMediumDate方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: implode
$xoops->redirect('dump.php', 3, implode('<br />', $xoops->security()->getErrors()));
}
$admin_page->addItemButton(_AM_MAINTENANCE_DUMP_LIST, 'dump.php', 'application-view-detail');
$admin_page->addItemButton(_AM_MAINTENANCE_DUMP_FORM, 'dump.php?op=dump', 'cd');
$admin_page->renderButton();
$dump_modules = isset($_REQUEST['dump_modules']) ? $_REQUEST['dump_modules'] : false;
$dump_tables = isset($_REQUEST['dump_tables']) ? $_REQUEST['dump_tables'] : false;
$drop = $system->cleanVars($_REQUEST, 'drop', 1, 'int');
if ($dump_tables == true && $dump_modules == true || $dump_tables == false && $dump_modules == false) {
$xoops->redirect("dump.php", 2, _AM_MAINTENANCE_DUMP_ERROR_TABLES_OR_MODULES);
}
$db = $xoopsDB;
$dump = new Maintenance();
$sql_text = "# \n";
$sql_text .= "# Dump SQL, Generated by XOOPS \n";
$sql_text .= "# Date : " . date(XoopsLocale::getFormatMediumDate()) . " \n";
$sql_text .= "# \n\n";
if ($dump_tables != false) {
$result_module = array();
for ($i = 0; $i < count($dump_tables); ++$i) {
//structure
$result_tables[$i]['name'] = $db->prefix . '_' . $dump_tables[$i];
$result_structure = $dump->dump_table_structure($db->prefix . '_' . $dump_tables[$i], $drop);
$sql_text .= $result_structure['sql_text'];
$result_tables[$i]['structure'] = $result_structure['structure'];
//data
$result_data = $dump->dump_table_datas($db->prefix . '_' . $dump_tables[$i]);
$sql_text .= $result_data['sql_text'];
$result_tables[$i]['records'] = $result_data['records'];
}
$xoops->tpl()->assign('result_t', $result_tables);