我有这个PHP脚本
date('dS F Y', strtotime($dateVariable))
结果如下:
01st September 2014
但我需要结果:01st Sep 2014
答案 0 :(得分:2)
尝试以下
date('dS M Y', strtotime($dateVariable))
答案 1 :(得分:1)
date('dS M Y', strtotime($dateVariable))
答案 2 :(得分:1)
您可以使用“M”模式直接使用日期功能。
http://php.net/manual/en/function.date.php
或者,查看函数JDMonthName - 使用模式2,您可以获得缩写的月份名称。
http://php.net/manual/en/function.jdmonthname.php
或者,查看strftime函数(非常类似于printf)来格式化日期。 %b格式给出缩写的月份名称。