當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Date::equals方法代碼示例

本文整理匯總了PHP中Zend\Date\Date::equals方法的典型用法代碼示例。如果您正苦於以下問題:PHP Date::equals方法的具體用法?PHP Date::equals怎麽用?PHP Date::equals使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend\Date\Date的用法示例。


在下文中一共展示了Date::equals方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testSetWhenUsesZendDateObject

 public function testSetWhenUsesZendDateObject()
 {
     $entry = new Writer\Deleted();
     $entry->setWhen(new Date\Date('1234567890', Date\Date::TIMESTAMP));
     $myDate = new Date\Date('1234567890', Date\Date::TIMESTAMP);
     $this->assertTrue($myDate->equals($entry->getWhen()));
 }
開發者ID:alab1001101,項目名稱:zf2,代碼行數:7,代碼來源:DeletedTest.php

示例2: testSetLastBuildDateUsesZendDateObject

 public function testSetLastBuildDateUsesZendDateObject()
 {
     $writer = new Writer\Feed();
     $writer->setLastBuildDate(new Date\Date('1234567890', Date\Date::TIMESTAMP));
     $myDate = new Date\Date('1234567890', Date\Date::TIMESTAMP);
     $this->assertTrue($myDate->equals($writer->getLastBuildDate()));
 }
開發者ID:narixx,項目名稱:zf2,代碼行數:7,代碼來源:FeedTest.php

示例3: testGetsDateModifiedFromAtom10

 /**
  * Get modification date (Unencoded Text)
  * @group ZFR002
  */
 public function testGetsDateModifiedFromAtom10()
 {
     $entry = Reader\Reader::importString(file_get_contents($this->_feedSamplePath . '/datemodified/atom10.xml'));
     $edate = new Date\Date();
     $edate->set('2009-03-07T08:03:50Z', Date\Date::ISO_8601);
     $this->assertTrue($edate->equals($entry->getDateModified()));
 }
開發者ID:heiglandreas,項目名稱:zf2,代碼行數:11,代碼來源:AtomStandaloneEntryTest.php

示例4: testGetsDateModifiedFromRss20_UnrecognisedGmtFormat

 /**
  * @issue ZF-7908
  */
 public function testGetsDateModifiedFromRss20_UnrecognisedGmtFormat()
 {
     $feed = Reader\Reader::importString(file_get_contents($this->_feedSamplePath . '/datemodified/plain/rss20-zf-7908.xml'));
     $entry = $feed->current();
     //$this->assertEquals('Sunday 11 January 2009 09 55 59 +0000', $entry->getDateModified()->toString('EEEE dd MMMM YYYY HH mm ss ZZZ'));
     $edate = new Date\Date();
     $edate->set('Sun, 11 Jan 2009 09:55:59 GMT', Date\Date::RSS);
     $this->assertTrue($edate->equals($entry->getDateModified()));
 }
開發者ID:alab1001101,項目名稱:zf2,代碼行數:12,代碼來源:RssTest.php

示例5: testComparingDatesWithoutOption

 /**
  * @ZF-9891
  */
 public function testComparingDatesWithoutOption()
 {
     $date = new Date(strtotime('Sat, 07 Mar 2009 08:03:50 +0000'));
     $date2 = new Date();
     $date2->set('Sat, 07 Mar 2009 08:03:50 +0000', Date::RFC_2822);
     $this->assertTrue($date2->equals($date));
 }
開發者ID:rikaix,項目名稱:zf2,代碼行數:10,代碼來源:DateTest.php

示例6: 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) {
//.........這裏部分代碼省略.........
開發者ID:stunti,項目名稱:zf2,代碼行數:101,代碼來源:DateTest.php


注:本文中的Zend\Date\Date::equals方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。