I want to get today\'s date + one year. How do I achieve this with PHP\'s date functions?
The shortest version:
echo (int)date('Y') + 1;