WordPress Version: 6.1
/**
* Gets number of days since the start of the week.
*
* @since 1.5.0
*
* @param int $num Number of day.
* @return float Days since the start of the week.
*/
function calendar_week_mod($num)
{
$base = 7;
return $num - $base * floor($num / $base);
}