Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 date() 在 kohana 3 中起诉 i18n?
echo date('l jS F Y h:i:s A');
我不知道如何翻译日期名称、月份名称等...
您应该使用strftime函数和setlocale,日期函数不支持本地化字符串。
在您的示例中,考虑到您想要法语日期,它可能是:
<?php setlocale(LC_ALL, 'fr_FR'); echo strftime("%A %d %B %G %I:%M:%S %p") . "\n";
它将输出Mardi 2013 年 11 月 19 日 01:41:59 am