Friday , December 20 2024

Display the date + a few days from the current one

The task in short: you need to make the delivery date + 5 days from the current date in PHP, with the output of the month in the genitive case in RU. But you can ignore custom edits for that language version.

The method with date( ‘d FY’ ); is not used, because the result will be like this: 11 February 2022, but you need February 11, 2022 + 5 days = February 16, 2022.

In this article, I have added a copy-paste code, the result of this echo will be February 16, 2022:

$searchbl = array ('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
$replacebl = array ('января', 'февраля', 'марта', 'апреля', 'мая' , 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря');

echo str_replace($searchbl,$replacebl, date('d F Y', strtotime("+5 days"))); echo ' г.';

I made this solution when I needed to make a delivery snippet on ModX and call it in a template.

Update: I had to add another condition, and do + 5 days for delivery for all days of the week except Tuesday, and for Tuesday: delivery + 6 days, because Sunday is a day off. Here is the complete code with this edit:

$searchbl = array ('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
$replacebl = array ('января', 'февраля', 'марта', 'апреля', 'мая' , 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря');

if(date('D') == 'Tue') { 
  echo str_replace($searchbl,$replacebl, date('d F Y', strtotime("+6 days")));
}
else echo str_replace($searchbl,$replacebl, date('d F Y', strtotime("+5 days"))); echo ' г.';

About admin

Hi there! My name is Iryna, I am a web developer from Ukraine. While working on freelance projects I often face different technical issues and in this blog I publish articles on how to solve them. I am also interested in digital drawing and in this blog you will find brief tutorials that helped me and hopefully can help you as well.

Check Also

Open expanded block by link in accorderon/spoiler/toggle

The case can be like this – for example, from the main page you need …

Leave a Reply

Your email address will not be published. Required fields are marked *