Tribe__Date_Utils::getFirstDayOfWeekInMonth( int $curdate, int $day_of_week )
Deprecated camelCase version of self::get_first_day_of_week_in_month
Contents
Parameters
- $curdate
-
(int) (Required) A timestamp.
- $day_of_week
-
(int) (Required) The index of the day of the week.
Return
(int) The timestamp of the date that fits the qualifications.
Source
File: src/Tribe/Date_Utils.php
public static function getFirstDayOfWeekInMonth( $curdate, $day_of_week ) {
_deprecated_function( __METHOD__, '3.11', __CLASS__ . '::get_fist_day_of_week_in_month' );
return self::get_first_day_of_week_in_month( $curdate, $day_of_week );
}