web-dev-qa-db-fra.com

Calculer la date future

Je souhaite calculer une date future en fonction de la date de publication du message et l'utiliser dans le contenu d'un message.

Je peux rappeler la date post publication en utilisant:

echo the_date('Y-m-d');

Comment puis-je calculer la date future?

1
Kirk Ward

essayer

$future_timestamp = strtotime('+1 week', get_the_date('Y-m-d'));

echo date('Y-m-d', $future_timestamp);

ou

$future_timestamp = get_the_date('U') + (60 * 60 * 24 * 7);

echo date('Y-m-d', $future_timestamp);
3
onetrickpony