- date_create_from_format: documentation ( source)
<?php
$firstMondayOfWeek = (clone $time = date_create_from_format('Y-m-d H:i:s', '2022-06-4 12:00:00'))
->modify($modify = 'first monday of this week');
echo $time->format('d M Y'), " --- ( $modify ) --> ", $firstMondayOfWeek->format('d M Y'), "\n";