Skip to content
Advertisement

Why is today`s weekday pluss two not working?

Any reason why $daynames[$dayW +1] works and displays todays dayname +1, but not $daynames[$dayW +2]? I am trying to display days in the week +1 day in the first and +2 days in the second cell, but I get an error on the +2 line.

JavaScript

Advertisement

Answer

I guess you’re trying to print what is the day name when you add a number of days to a given day right ? If true, I think you might need to look for the modulo function (cf. https://www.php.net/manual/fr/language.operators.arithmetic.php) Basically here, the principle is that every time you add 7 days, you get the same day name; so you need a modulo 7.

Here is your code slightly altered to show this in action :

JavaScript

You can also see that in action here https://3v4l.org/6daZo with another slightly sophisticated variation.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement