Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In most locale, the first day of the week is Monday. In the US (and presumably elsewhere), the week starts on Sunday.

How can find out in PHP, for an arbitrary locale, the current setting for the first day of the week (Sunday or Monday)?

share|improve this question

2 Answers

up vote 5 down vote accepted

From CLDR's supplemental data:

<firstDay day="mon"  territories="001" />
<firstDay day="fri"  territories="MV" />
<firstDay day="sat"  territories="AF BH DJ DZ EG ER ET IQ IR JO KE KW LY MA OM QA SA SD SO TN YE" />
<firstDay day="sun"  territories="AS AZ BW CA CN FO GE GL GU HK IE IL IN IS JM JP KG KR LA MH MN MO MP MT NZ PH PK SG SY TH TT TW UM US UZ VI ZW" />
<firstDay day="sun"  territories="ET MW NG TJ" draft="unconfirmed" />
<firstDay day="sun"  territories="GB" draft="unconfirmed"  alt="variant" references="Shorter Oxford Dictionary (5th edition, 2002)"/>

(territory 001 is "World")

share|improve this answer
That's quite useful. Thank you for posting that. – Calvin Apr 8 '09 at 0:41

Run this command in the shell (bash or sh or etc):

locale first_weekday

In PHP, call a process to run this command in sh, and get it's output. In Python, I does a thing like this:

def getLocaleFirstWeekDay():
  return int(os.popen('locale first_weekday').read())-1
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.