本文整理汇总了PHP中Zend_Date::subIso方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Date::subIso方法的具体用法?PHP Zend_Date::subIso怎么用?PHP Zend_Date::subIso使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Date
的用法示例。
在下文中一共展示了Zend_Date::subIso方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testLoose
//.........这里部分代码省略.........
// 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) {
// success
}
try {
$date->setIso(null);
$this->fail();
} catch (Zend_Date_Exception $e) {
// success
}
try {
$date->addIso(null);
$this->fail();
} catch (Zend_Date_Exception $e) {
// success
}
try {
$date->subIso(null);
$this->fail();
} catch (Zend_Date_Exception $e) {
// success
}
try {
$date->compareIso(null);
$this->fail();
} catch (Zend_Date_Exception $e) {
// success
}
try {
$date->setArpa(null);
$this->fail();
} catch (Zend_Date_Exception $e) {
// success
}
try {
$date->addArpa(null);
$this->fail();
} catch (Zend_Date_Exception $e) {
// success
}
try {
$date->subArpa(null);
$this->fail();
} catch (Zend_Date_Exception $e) {
// success
}
try {
$date->compareArpa(null);
$this->fail();
} catch (Zend_Date_Exception $e) {
示例2: testSubIso
/**
* Test for subIso
*/
public function testSubIso()
{
$locale = new Zend_Locale('de_AT');
$date = new Zend_Date(1234567890, null, $locale);
$d2 = new Zend_Date(1234567899, null, $locale);
$result = $date->subIso(Zend_Date::now());
$this->assertTrue($result instanceof Zend_Date);
$date = new Zend_Date(1234567890, null, $locale);
$result = $date->subIso('0000-00-00T01:00:00+0100');
$this->assertSame($result->get(Zend_Date::W3C), '2009-02-14T00:31:30+01:00');
$this->assertSame($date->get(Zend_Date::W3C), '2009-02-14T00:31:30+01:00');
$result = $date->subIso('0001-01-01T01:01:01+0100');
$this->assertSame($date->get(Zend_Date::W3C), '2008-01-14T00:30:29+01:00');
$date = new Zend_Date(1234567890, null, $locale);
$date->subIso($d2);
$this->assertSame($date->get(Zend_Date::W3C), '-1-12-06T00:59:51+01:00');
}