How to change Date format according to the country

后端 未结 3 1016
半阙折子戏
半阙折子戏 2021-01-21 22:29

I have a requirement to change the order of DD/MM/YYYY tags according to a users country .

http://en.wikipedia.org/wiki/Date_format_by_country

The way that I was

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-21 23:00

    For PHP, this should be a good start: http://php.net/manual/en/function.setlocale.php

    For JavaScript: Display date/time in user's locale format and time offset

    All in all, most modern languages have locale support built-in very well. You should not have to implement this yourself. It will be tiresome and buggy (localization is hard).

提交回复
热议问题