digitalgod Posted October 11, 2006 Share Posted October 11, 2006 Hey guys,how can I convert a day into a numerical value?like monday --> 1 tuesday --> 2 etc Link to comment https://forums.phpfreaks.com/topic/23704-converting-day-of-the-week-to-numerical/ Share on other sites More sharing options...
obsidian Posted October 11, 2006 Share Posted October 11, 2006 [code]<?phpecho date('w');?>[/code]so, as with any other date call, pass in a timestamp of the date you want the day of the week for as a second parameter, and you're good to go. Link to comment https://forums.phpfreaks.com/topic/23704-converting-day-of-the-week-to-numerical/#findComment-107604 Share on other sites More sharing options...
digitalgod Posted October 11, 2006 Author Share Posted October 11, 2006 that I know already, I guess I wasn't clear before :PWhat I meant to say is that I have a dropdown, the value of the dropdown is a date in this format Y-m-d and what's displayed in the dropdown is something like date("l (M jS)") now when a user selects a date it calls a javascript function which extracts the day like sovar text = main_select.options[main_select.selectedIndex].text.split(" ");var day = text[0].toLowerCase();now I know that by using a switch statement I can change that string to a numerical value but I was wondering if there was a more efficient way of doing it. Link to comment https://forums.phpfreaks.com/topic/23704-converting-day-of-the-week-to-numerical/#findComment-107608 Share on other sites More sharing options...
fenway Posted October 11, 2006 Share Posted October 11, 2006 Well, the Date() constuctor can take the full six-parameter version, so once you have a proper JavaScript Date object, you should be fine. Link to comment https://forums.phpfreaks.com/topic/23704-converting-day-of-the-week-to-numerical/#findComment-107663 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.