Tribe__Date_Utils::getLastDayOfWeekInMonth( int $curdate, int $day_of_week )

Deprecated camelCase version of self::get_last_day_of_week_in_month


Parameters

$curdate

(int) (Required) A timestamp.

$day_of_week

(int) (Required) The index of the day of the week.


Top ↑

Return

(int) The timestamp of the date that fits the qualifications.


Top ↑

Source

File: src/Tribe/Date_Utils.php

		public static function getLastDayOfWeekInMonth( $curdate, $day_of_week ) {
			_deprecated_function( __METHOD__, '3.11', __CLASS__ . '::get_last_day_of_week_in_month' );
			return self::get_last_day_of_week_in_month( $curdate, $day_of_week );
		}