Zend framework 每月第一天

Zend framework 每月第一天,zend-framework,zend-date,Zend Framework,Zend Date,如果我从当前日期开始,如何获得每个月的第一个星期五 我在考虑使用$date->get(Zend::WEEKDAY)并将其与星期五进行比较,然后与DAY进行比较,检查它是否小于或等于7。然后再加上1个月 一定有更简单的吗 怎么样 $firstFridayOfOcober = strtotime('first friday of october'); 或者将其变成一个方便的功能:- /** * Returns a timestamp for the first friday of the gi

如果我从当前日期开始,如何获得每个月的第一个星期五

我在考虑使用$date->get(Zend::WEEKDAY)并将其与星期五进行比较,然后与DAY进行比较,检查它是否小于或等于7。然后再加上1个月

一定有更简单的吗

怎么样

$firstFridayOfOcober = strtotime('first friday of october');
或者将其变成一个方便的功能:-

 /**
 * Returns a timestamp for the first friday of the given month
 * @param string $month
 * @return type int
 */
function firstFriday($month)
{
    return strtotime("first friday of $month");
}
您可以将其与Zend_Date一起使用,如下所示:-

$zDate = new Zend_Date();
$zDate->setTimestamp(firstFriday('october'));
然后
Zend_Debug::dump($zDate->toString())将生成:-

string '7 Oct 2011 00:00:00' (length=19)
我认为这要简单得多:)

仔细考虑后再编辑:

更一般化的函数可能对您更有用,因此我建议您使用以下函数:-

/**
 * Returns a Zend_Date object set to the first occurence
 * of $day in the given $month.
 * @param string $day
 * @param string $month
 * @param optional mixed $year can be int or string
 * @return type Zend_Date
 */
function firstDay($day, $month, $year = null)
{
    $zDate = new Zend_Date();
    $zDate->setTimestamp(strtotime("first $day of $month $year"));
    return $zDate;
}
现在,我首选的方法是扩展PHP:-

class MyDateTime extends DateTime
{
    /**
    * Returns a MyDateTime object set to 00:00 hours on the first day of the month
    * 
    * @param string $day Name of day
    * @param mixed $month Month number or name optional defaults to current month
    * @param mixed $year optional defaults to current year
    * 
    * @return MyDateTime set to last day of month
    */
    public function firstDayOfMonth($day, $month = null, $year = null)
    {
        $timestr = "first $day";
        if(!$month) $month = $this->format('M');
        $timestr .= " of $month $year";
        $this->setTimestamp(strtotime($timestr));
        $this->setTime(0, 0, 0);
        var_dump($this);
    }
}
$dateTime = new MyDateTime();
$dateTime->firstDayOfMonth('Sun', 'Jul', 2011);
给出:-

object(MyDateTime)[36]
  public 'date' => string '2011-07-03 00:00:00' (length=19)
  public 'timezone_type' => int 3
  public 'timezone' => string 'UTC' (length=3)

我不明白为什么不。请尝试并查看:)此页面上的changelog部分可能会有所帮助