format("Y") == TARGET_YEAR) { $month = (int)$targetDate->format("m"); list($tensPlace, $onesPlace) = str_split($targetDate->format("d")); if ($month == $tensPlace + $onesPlace) { $countHappyDay++; } $targetDate->add(new DateInterval("P1D")); } echo $countHappyDay . "\n";