/    Sign up×
Community /Pin to ProfileBookmark

Find day of week from date…

Hey If I give php the month and day, how can I get it to figure out which day of the week that date is?

to post a comment
PHP

3 Comments(s)

Copy linkTweet thisAlerts:
@NogDogAug 30.2007 — You need to know (or assume) the year, too. ?

You could do something like:
[code=php]
$date = '2007/08/30';
$weekday = date('l', strtotime($date)); // note: first arg to date() is lower-case L
[/code]
Copy linkTweet thisAlerts:
@manojdashmcaSep 08.2011 — echo date('N', strtotime(date("Y-m-d"))); //for current date

echo date('N', strtotime("2010-08-09")); // for given date
Copy linkTweet thisAlerts:
@NogDogSep 08.2011 — echo date('N', strtotime(date("Y-m-d"))); //for current date

echo date('N', strtotime("2010-08-09")); // for given date[/QUOTE]


Hmm...did you really need to dig up a 4 years old thread to essentially repeat what I had posted way back then? ?
×

Success!

Help @novemberGrey spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.2,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...