本文整理汇总了PHP中CMbDT::dateTimeFromXMLDuration方法的典型用法代码示例。如果您正苦于以下问题:PHP CMbDT::dateTimeFromXMLDuration方法的具体用法?PHP CMbDT::dateTimeFromXMLDuration怎么用?PHP CMbDT::dateTimeFromXMLDuration使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CMbDT
的用法示例。
在下文中一共展示了CMbDT::dateTimeFromXMLDuration方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getReleaseInfo
static function getReleaseInfo()
{
$svn_status_file = __DIR__ . "/../tmp/svnstatus.txt";
$root_release_file = __DIR__ . "/../release.xml";
$applicationVersion = array("releaseTitle" => null, "releaseDate" => null, "releaseCode" => null, "releaseRev" => null, "revision" => null, "date" => null, "relative" => null, "title" => "");
// Release information
if (is_readable($root_release_file)) {
$releaseInfoDOM = new DOMDocument();
$releaseInfoDOM->load($root_release_file);
$releaseElement = $releaseInfoDOM->documentElement;
$releaseCode = $releaseElement->getAttribute("code");
list($year, $month) = explode("_", $releaseCode);
$title = strftime("%B", mktime(0, 0, 0, $month, 10)) . " " . $year;
$applicationVersion["releaseTitle"] = $title;
$applicationVersion["releaseDate"] = CMbDT::dateTimeFromXMLDuration($releaseElement->getAttribute("date"));
$applicationVersion["releaseCode"] = $releaseCode;
$applicationVersion["releaseRev"] = $releaseElement->getAttribute("rev");
$applicationVersion["title"] = "Branche de " . $applicationVersion["releaseTitle"];
}
// Revision information
if (is_readable($svn_status_file)) {
$svnInfo = file($svn_status_file);
$revision = array("revision" => explode(": ", $svnInfo[0]), "date" => explode(": ", $svnInfo[1]));
$applicationVersion["revision"] = trim($revision["revision"][1]);
$applicationVersion["date"] = CMbDT::dateTime(trim($revision["date"][1]));
$applicationVersion["relative"] = CMbDate::relative($applicationVersion["date"]);
$applicationVersion["title"] .= "\n" . "Mise à jour le " . CMbDT::dateToLocale($applicationVersion["date"]) . "\n" . "Révision : " . $applicationVersion["revision"];
}
return $applicationVersion;
}