3
$a = "Thursday, 10 January, 2013";
給我2012-01-12當我做
$b = date('Y-m-d', strtotime($a));
$a = "Thursday, 10 January, 2013";
給我2012-01-12當我做
$b = date('Y-m-d', strtotime($a));
strtotime()
預計該字符串是英文格式的日期。由於上述顯然不是這樣,它不會返回預期的結果。作爲一個例子,以下將正確呈現:
$a = "January 10, 2013";
$b = date('Y-m-d', strtotime($a));
echo $b;
非常感謝。我會記住的。 –