Ask php how to get the starting time stamp of last Monday (00:00) for a specified time point (timestamp).

there is a requirement in the project:
get the starting time stamp (00:00) of Monday of last week at a specified time point (timestamp)

Note: it is not the week of the current time, it is the week of the specified time.

Thank you for your advice!

Php
Feb.22,2022

$start_time = strtotime('monday last week', $time);
Menu