标签: php
如何使用PHP将1978年11月20日的出生日期转换为类似于1978年11月20日的日期?
由于
答案 0 :(得分:3)
像这样使用date和strtotime:
date
strtotime
echo date('F d, Y', strtotime($your_date));