Translate date("d F Y (H:i) function php

后端 未结 3 1648
臣服心动
臣服心动 2021-02-04 09:07

I\'m brazilian and there\'s a wordpress plugin that uses

\" . date(\"d F Y (H:i)\",$date) . \"

Output: 16 January 2013 (00:54)

3条回答
  •  借酒劲吻你
    2021-02-04 09:43

    WordPress has date_i18n to retrieve the date in localized format, based on timestamp.

    Try:

    echo date_i18n("d F Y (H:i)",$date) ;
    

提交回复
热议问题