我正在研究php代码$formated_date_new = date('M d, Y',strtotime($this_date));
这给了我英文的月份名称。
<script>
document.getElementById('title_en').value = "<?php echo $formated_date_new ?>";
</script>
上面的脚本以以下格式返回日期(英文月份名称为月):
Mar 13, 2019
要获取法语的月份名称,我需要集成以下代码,但是我不确定该怎么做。
<?php
setlocale(LC_TIME, "fr_FR");
echo strftime(" in French %d.%M.%Y and");
我想要的o / p是:
13 mars 2019
答案 0 :(得分:1)
使用strftime代替日期:
setlocale( LC_TIME, "fr_FR" );
$formated_date_new = strftime( "%d %b %Y", strtotime( $this_date ) );
strftime引用:
答案 1 :(得分:0)
$formatted_date_new = strftime(" in French %d.%M.%Y and");
我不确定您的问题