Tribe__Date_Utils::week_ends_on( int $week_starts_on )

Returns the day of the week the week ends on, expressed as a “w” value (ie, Sunday is 0 and Saturday is 6).


Parameters

$week_starts_on

(int) (Required)


Top ↑

Return

(int)


Top ↑

Source

File: src/Tribe/Date_Utils.php

		public static function week_ends_on( $week_starts_on ) {
			if ( --$week_starts_on < 0 ) $week_starts_on = 6;
			return $week_starts_on;
		}