Category: PHP7
Added: 17th of January 2016
Updated On: 28th of October 2020
Viewed: 3,720 times
One thing I noted, you will get varying results if you try to get the day of the week from a specified date in PHP if you submit your date in the following format dd/mm/yy.
What you need to do is replace / with - in your date using the str_replace function, convert the date to a unix timestamp, then use the date function with l switch, which will give you the proper day of the week.
Copy and paste the code below. The code will display Wednesday