如何通过日期格式?

时间:2016-08-22 05:43:49

标签: php date format twig

{{ post.publish_at.format(config_get('streams::datetime.date_format')) }}

上述代码将于2016年6月30日星期四结束。如何删除星期四?如何传递格式?

2 个答案:

答案 0 :(得分:2)

您可以使用类似的内容格式化日期,以获取有关date in twig

的更多信息
{{ post.published_at|date("j F, Y") }}

答案 1 :(得分:2)

{{ post.publish_at.format("F jS, Y") }}