2008年5月15日 星期四

[實用]PHP時間格式轉換

E.g

$d = "27-10月-03";
$ar = split("-",$d);
echo date("Y-m-d",mktime(0,0,0,$ar[1],$ar[0],$ar[2]));

沒有留言: