Skip to content

First and last day of the week #47

@iBet7o

Description

@iBet7o

Hi!

I need to show the first and last day of the week with the format {{ first_monday_number }}-{{ last_saturday_number }} {{ month_name }}. Example with the week number 24: 2017-06-12 to 2017-06-18

<?php

$year = $request->query->has('year') ? $request->query->get('year') : date('Y');
$weeknum = $request->query->has('weeknum') ? $request->query->get('weeknum') : date('W');

$week = $this->get('calendr')->getWeek($year, $weeknum);
$weekEvents = $this->get('calendr')->getEvents($week);

In the twig template:

{{ week.begin.format('j') }} - {{ week.end.format('j') }} of {{ week.format('F') }}

The problem is in {{ week.end.format('j') }} , print "12 - 19 of June" and I need the last day to be on Saturday: 12 - 17 of June.

How can I get the correct date?

Thanks,

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions