本文整理汇总了PHP中Zend_Date::getMonth方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Date::getMonth方法的具体用法?PHP Zend_Date::getMonth怎么用?PHP Zend_Date::getMonth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Date
的用法示例。
在下文中一共展示了Zend_Date::getMonth方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGetMonth
/**
* Test for getMonth
*/
public function testGetMonth()
{
$locale = new Zend_Locale('de_AT');
$date = new Zend_Date(1234567890, $locale);
$d2 = new Zend_Date(1610101010, $locale);
$date->setTimeZone(date_default_timezone_get());
$d2->setTimeZone(date_default_timezone_get());
$result = $date->getMonth();
$this->assertTrue($result instanceof Zend_Date);
$this->assertSame($result->toString(), '01.02.1970 05:00:00');
$this->assertSame($date->getMonth()->toString(), '01.02.1970 05:00:00');
}
示例2: checkIfCcIsExpired
public function checkIfCcIsExpired($expMonth, $expYear)
{
$today = new Zend_Date(Mage::app()->getLocale()->storeTimeStamp());
$currentYear = (int) $today->getYear()->toString("YY");
$currentMonth = (int) $today->getMonth()->toString("MM");
if ($currentYear > (int) $expYear) {
return false;
}
if ($currentYear == (int) $expYear && $currentMonth > (int) $expMonth) {
return false;
}
return true;
}
示例3: _getYearInterval
/**
* Get Interval for a year
*
* @param Zend_Date $dateStart
* @param Zend_Date $dateEnd
* @param bool $firstInterval
* @return array
*/
protected function _getYearInterval(Zend_Date $dateStart, Zend_Date $dateEnd, $firstInterval)
{
$interval = array();
$interval['period'] = $dateStart->toString('yyyy');
$interval['start'] = $firstInterval ? $dateStart->toString('yyyy-MM-dd 00:00:00') : $dateStart->toString('yyyy-01-01 00:00:00');
$lastInterval = $dateStart->compareYear($dateEnd->getYear()) == 0;
$interval['end'] = $lastInterval ? $dateStart->setMonth($dateEnd->getMonth())->setDay($dateEnd->getDay())->toString('yyyy-MM-dd 23:59:59') : $dateStart->toString('yyyy-12-31 23:59:59');
$dateStart->addYear(1);
if ($dateStart->compareYear($dateEnd->getYear()) == 0) {
$dateStart->setMonth(1)->setDay(1);
}
return $interval;
}
示例4: getCards
public function getCards()
{
if (is_null($this->_cards)) {
$today = new Zend_Date(Mage::app()->getLocale()->storeTimeStamp());
$currentYear = (int) $today->getYear()->toString("YY");
$currentMonth = (int) $today->getMonth()->toString("MM");
$this->_cards = Mage::getResourceModel('hipay/card_collection')->addFieldToSelect('*')->addFieldToFilter('customer_id', $this->getCustomer()->getId())->addFieldToFilter('cc_status', Allopass_Hipay_Model_Card::STATUS_ENABLED)->addFieldToFilter('cc_exp_year', array("gteq" => $currentYear))->setOrder('card_id', 'desc')->setOrder('is_default', 'desc');
foreach ($this->_cards as $card) {
if ($card->ccExpYear == $currentYear && $currentMonth < $card->ccExpMonth) {
$this->_cards->removeItemByKey($card->getId());
}
}
}
return $this->_cards;
}
示例5: testGettingMonthWhenUsingGNU
/**
* @ZF-9085
*/
public function testGettingMonthWhenUsingGNU()
{
Zend_Date::setOptions(array('format_type' => 'php'));
$date = new Zend_Date(array('day' => 1, 'month' => 4, 'year' => 2008));
$date2 = $date->getMonth();
$result = $date2->toArray();
$this->assertEquals(1970, $result['year']);
}