3

現在の日付から開始する場合、各月の最初の金曜日を取得するにはどうすればよいですか?

$date->get(Zend::WEEKDAY) を使用して、それを金曜日と比較し、次に DAY と比較して、7 以下かどうかを確認することを考えていました。次に、1 か月を追加します。

もっと簡単なものがあるはずですか?

4

1 に答える 1

5

どうですか

$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 のDateTime オブジェクトを拡張することです:-

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)
于 2011-10-08T21:22:26.877 に答える