本文整理匯總了PHP中Zend\Date\Date::addTime方法的典型用法代碼示例。如果您正苦於以下問題:PHP Date::addTime方法的具體用法?PHP Date::addTime怎麽用?PHP Date::addTime使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend\Date\Date
的用法示例。
在下文中一共展示了Date::addTime方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testLoose
/**
* test looseBehaviour
*/
public function testLoose()
{
$date = new Date(0, 'de_DE');
try {
$date->set(null, Date::YEAR);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
$date->set(10, 'de_DE');
$this->assertEquals(10, $date->getTimestamp());
try {
$date->add(null, Date::YEAR);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
$date->add(10, 'de_DE');
$this->assertEquals(20, $date->getTimestamp());
try {
$date->sub(null, Date::YEAR);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
$date->sub(10, 'de_DE');
$this->assertEquals(10, $date->getTimestamp());
try {
$date->compare(null, Date::YEAR);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
try {
$date->equals(null, Date::YEAR);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
try {
$date->isEarlier(null, Date::YEAR);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
try {
$date->isLater(null, Date::YEAR);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
try {
$date->setTime(null);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
try {
$date->addTime(null);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
try {
$date->subTime(null);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
try {
$date->compareTime(null);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
try {
$date->setDate(null);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
try {
$date->addDate(null);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
try {
$date->subDate(null);
$this->fail();
} catch (\Zend\Date\Exception $e) {
// success
}
try {
$date->compareDate(null);
$this->fail();
} catch (\Zend\Date\Exception $e) {
//.........這裏部分代碼省略.........