PHP 回显一周中的所有天 (strftime)
我想知道是否有一种方法可以使用 strftime 中的区域设置来回显一周中的所有天,无论日期如何。用作标题或标题,而不是使用常量并加载正确的常量。
即
setlocale(LC_TIME, "de_DE");
echo strftime("%A", 1); //echos Monday
echo strftime("%A", 2); //echos Tuesday
echo strftime("%A", 3); //echos Wednesday
,我需要做的就是更改不同语言的区域设置。
谢谢
I was wondering if there is a way to use the locale in strftime to echo all days of the week, regardless of date. To use as sort of headings or titles and rather than using constants and loading the correct one.
i.e.
setlocale(LC_TIME, "de_DE");
echo strftime("%A", 1); //echos Monday
echo strftime("%A", 2); //echos Tuesday
echo strftime("%A", 3); //echos Wednesday
so that all I need to do is change the locale for a different language.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您也可以创建一个简单的 for 循环:
You could alternatively create a simple for loop: