本文整理汇总了PHP中string::get_current_date方法的典型用法代码示例。如果您正苦于以下问题:PHP string::get_current_date方法的具体用法?PHP string::get_current_date怎么用?PHP string::get_current_date使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类string
的用法示例。
在下文中一共展示了string::get_current_date方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: element
##############################ATTENTION!!!
$xmlClass->setOverwrite(true);
# add comment
$xmlClass->add_comment(XML_CLASS_COMMENT);
# open XML element
$xmlClass->open_xml_element("main");
# add XML element (Name)
$xmlClass->add_xml_element("name", $name);
# add XML element (MOTD)
$xmlClass->add_xml_element("motd", $intro);
# add XML element (Description)
$xmlClass->add_xml_element("description", $main);
# add XML element (Main block)
$xmlClass->add_xml_element("MainBlock", "This is only a test text to view results of webpages parsing. Modify me!");
# add XML element (ChangeLog)
$xmlClass->add_xml_element("ChangeLog", "Change Log for " . $name . "\n\nLast Update " . date("D, d M Y H:i:s", $stringClass->get_current_date()) . " " . $_COOKIE['myforum'] . "\n");
# add XML element (ToDo list)
$xmlClass->add_xml_element("ToDo", "Modify me! (ToDo list)");
# close XML element
$xmlClass->close_xml_element("main", "Created on " . date("D, d M Y H:i:s", $stringClass->get_current_date()) . " by " . $_COOKIE['myforum']);
# close XML creation process
$xmlClass->closeXMLFile();
#########################
# start XML creation process (CONFIG FILE)
$xmlClass->createXMLFile(" ", true);
# set the Path of the file
$xmlClass->setPath("misc/groupware/writeable/projects/shared/" . $_GET['id'] . "/config.php");
# add comment
$xmlClass->add_comment(XML_CLASS_COMMENT);
# open main element
$xmlClass->open_xml_element("config");
示例2: string
function create_project($name, $category, $intro, $description, $by)
{
$stringClass = new string();
$date = $stringClass->get_current_date();
}
示例3: die
if (substr($key, 0, 5) == "__ob_") {
if ($value == "" or $value == "scegli...") {
echo "- Non hai compilato il campo obbligatorio <strong>{$key}</strong>, l'azione non può essere processata.<br>";
$flag = false;
}
}
}
if ($_SESSION['add_project_confirm_ID'] != $_POST['__ob_code']) {
echo "- Il codicem di conferma non è valido!.<br>";
$flag = false;
}
if (!$flag) {
# die if there are some errors
die("<br>Siamo spiacenti, ma a causa di qualche errore, la tua richiesta non può essere inoltrata correttamente al server. Verifica di aver compilato tutti i campi.<br><br><a href=\"javascript:history.back()\" title=\"indietro\">Indietro</a>");
}
# create STRING object
$stringClass = new string();
# create XML object
$xmlClass = new xml();
# set overwrite to true
$xmlClass->setOverWrite(false);
# check if XML folder exists
if (file_exists("misc/groupware/xml/" . $stringClass->get_current_date() . "/")) {
die("E' già presente un progetto con lo stesso nome, Prova ad aggiornare la pagina...");
} else {
mkdir("misc/groupware/writeable/projects/shared/" . $stringClass->get_current_date() . "/");
mkdir("misc/groupware/writeable/projects/shared/" . $stringClass->get_current_date() . "/news/");
}
# starting autopilot
$xmlClass->autopilot("misc/groupware/writeable/projects/adoption/" . $stringClass->get_current_date() . ".xml", $_POST, $usersClass->get_user(), "project");
}