本文整理汇总了PHP中Timestamp::setTimeStart方法的典型用法代码示例。如果您正苦于以下问题:PHP Timestamp::setTimeStart方法的具体用法?PHP Timestamp::setTimeStart怎么用?PHP Timestamp::setTimeStart使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Timestamp
的用法示例。
在下文中一共展示了Timestamp::setTimeStart方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: createFromXML
/**
* Convert the raw XML into an object
*
* @param \SimpleXMLElement $xml
* @return Timestamp
*/
public static function createFromXML(\SimpleXMLElement $xml)
{
$timestamp = new Timestamp();
if (isset($xml->date)) {
if (isset($xml->timestart)) {
$start = (string) $xml->date . ' ' . (string) $xml->timestart;
$timestamp->setTimeStart(new \DateTime($start));
}
if (isset($xml->timeend)) {
$end = (string) $xml->date . ' ' . (string) $xml->timeend;
$timestamp->setTimeEnd(new \DateTime($end));
}
}
return $timestamp;
}