strtotime を使います。
$time = strtotime("2005-02-28");
これで $time には 2005-02-28 の日付のUNIXタイムが入ります。
$time = strtotime("20050228");
これでもOK。
strtotime の引数には、
now
10 September 2000
+1 day
+1 week
+1 week 2 days 4 hours 2 seconds
next Thursday
last Monday
のような文字列も使えます。
スポンサードリンク
PHPサンプル集