Use this to get the timestamp of the day you want, and instead of โSaturdayโ write the first day of the week:
strtotime('Last Saturday',mktime(0,0,0, date('m'), date('d')+1, date('y')))
for example: in the code above, you get the timestamp of the last Saturday, not this Saturday.
Please note that if the weekday is Saturday, this will return the current timestamp.
source share