本文整理匯總了PHP中Nette\DateTime::setTime方法的典型用法代碼示例。如果您正苦於以下問題:PHP DateTime::setTime方法的具體用法?PHP DateTime::setTime怎麽用?PHP DateTime::setTime使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Nette\DateTime
的用法示例。
在下文中一共展示了DateTime::setTime方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getDefaultParser
protected function getDefaultParser()
{
return function ($value) {
if (!preg_match('#^(?P<dd>\\d{1,2})[. -] *(?P<mm>\\d{1,2})([. -] *(?P<yyyy>\\d{4})?)?$#', $value, $matches)) {
return NULL;
}
$dd = $matches['dd'];
$mm = $matches['mm'];
$yyyy = isset($matches['yyyy']) ? $matches['yyyy'] : date('Y');
if (!checkdate($mm, $dd, $yyyy)) {
return NULL;
}
$value = new Nette\DateTime();
$value->setDate($yyyy, $mm, $dd);
$value->setTime(0, 0, 0);
return $value;
};
}
示例2: getDefaultParser
protected function getDefaultParser()
{
return function ($value) {
if (!preg_match('#^(?P<dd>\\d{1,2})[. -] *(?P<mm>\\d{1,2})(?:[. -] *(?P<yyyy>\\d{4})?)?(?: *[ -@] *(?P<hh>\\d{1,2})[:.](?P<ii>\\d{1,2})(?:[:.](?P<ss>\\d{1,2}))?)?$#', $value, $matches)) {
return NULL;
}
$dd = $matches['dd'];
$mm = $matches['mm'];
$yyyy = isset($matches['yyyy']) ? $matches['yyyy'] : date('Y');
$hh = isset($matches['hh']) ? $matches['hh'] : 0;
$ii = isset($matches['ii']) ? $matches['ii'] : 0;
$ss = isset($matches['ss']) ? $matches['ss'] : 0;
if (!($hh >= 0 && $hh < 24 && $ii >= 0 && $ii <= 59 && $ss >= 0 && $ss <= 59)) {
$hh = $ii = $ss = 0;
}
if (!checkdate($mm, $dd, $yyyy)) {
return NULL;
}
$value = new Nette\DateTime();
$value->setDate($yyyy, $mm, $dd);
$value->setTime($hh, $ii, $ss);
return $value;
};
}