-4
A
回答
1
0
使用date_create_from_format
,然後用date_format
date_format(date_create_from_format("2012-07-24","Y-m-d"),"F D, Y, l")
3
你可以使用任何以下的方式:
//1
echo date('F d, Y, l',strtotime('2012-07-24'));
//2
$date = date_create('2012-07-24');
echo date_format($date, 'F d, Y, l');
//3
$date = new DateTime('2012-07-24');
echo $date->format('F d, Y, l');
0
<?php
function changedateformat($date)
{
$date1=explode("-",$date);
$mktime=mktime(0,0,0,$date1[1],$date1[2],$date1[0]);
return date('F d, Y, l',$mktime);
}
$date1="2012-07-24";
echo changedateformat($date1);
?>
相關問題
- 1. PHP - 更改日期格式
- 2. PHP - 日期更改格式
- 3. 在php中更改日期的格式
- 4. 在php中更改日期格式mysql
- 5. 從php中更改日期格式php
- 6. 更改日期的格式在PHP
- 7. 用PHP更改日期格式
- 8. 更改日期格式 - bash或php
- 9. 我如何更改PHP日期格式
- 10. 在php中改變日期格式
- 11. 在SQL中更改日期格式
- 12. 在angularjs中更改日期格式
- 13. 在Ruby中更改日期格式?
- 14. 在SSIS中更改日期格式
- 15. 在sqlite中更改日期格式
- 16. 在VB.Net中更改日期格式
- 17. 在vaadin-grid中更改日期格式
- 18. 在JavaScript中更改日期格式
- 19. 在extjs中更改日期格式
- 20. 在Python中更改日期格式
- 21. 在DatePickerDialog中更改日期格式?
- 22. 在Access中更改日期格式
- 23. 在R中更改日期格式
- 24. 在log4j.xml中更改日期格式
- 25. 在回覆中更改日期格式
- 26. 在Ubuntu中更改短日期格式
- 27. 在sql中更改日期格式
- 28. 在Excel中更改日期格式
- 29. 在SAS9.3中更改日期格式
- 30. 在linux bash中更改日期格式
檢查http://php.net/manual/en/function.date。 php –
你有試過什麼請告訴我們 – sunleo