使用荷兰语PHP的日期(但使用Strotime)

时间:2018-12-06 15:19:32

标签: php date

一名自由职业者在我的脚本上完成了一项工作,现在我更改了一些问题。我最后要更改的是荷兰语的日期。

$prev_date = date( DATE_FORMAT, strtotime( '-1 day', strtotime( $view_date ) ) );
$next_date = date( DATE_FORMAT, strtotime( '+1 day', strtotime( $view_date ) ) );
$today_date = date( DATE_FORMAT);
$formatted_date = date( 'l d F Y', strtotime( $view_date ) );

$formatted_date必须以荷兰语显示,其余的都用英语显示。我试图将其更改为setlocale(LC_ALL, 'nl_NL');strftime(),但没有结果。

0 个答案:

没有答案