I have get help for it:
And i make this
<?php
$day = "12";
$month = "06";
$year = "1991";
if (date("d") <= $day && date("m") <= $month){
echo date("d-m-Y", mktime(0,0,0,$month,$day - 7,date("Y")));
}else {
$dob = "$day-$month-$year";
$dobTime = strtotime($dob);
list(,,$dobyear) = explode('-', $dob);
$years = (date('Y') - $dobyear) + 1;
$dob1WeekBefore = strtotime("+$years year -1 Week", $dobTime);
echo date('d-m-Y', $dob1WeekBefore);
}
?>