如何使用 php 中的 setlocale 函数获取法语月份名称?

How to use setlocale function in php to get month name in french?

我正在编写 php 代码 $formated_date_new = date('M d, Y',strtotime($this_date)); 这给了我英文的月份名称。

<script>
       document.getElementById('title_en').value = "<?php echo $formated_date_new ?>";
</script>

以上脚本returns日期格式如下(月份名称为英文):

Mar 13, 2019 

为了获取法语的月份名称,我需要集成以下代码,但我不确定该怎么做。

<?php
setlocale(LC_TIME, "fr_FR");
echo strftime(" in French %d.%M.%Y and");


我想要的o/p是:

13 mars 2019
$formatted_date_new = strftime(" in French %d.%M.%Y and");

我不确定你的问题

使用 strftime 代替日期:

setlocale( LC_TIME, "fr_FR" );
$formated_date_new = strftime( "%d %b %Y", strtotime( $this_date ) );

strftime 参考:

http://php.net/manual/en/function.strftime.php