私はPHPの日付キャプチャを使用しています
- echo j7_getdate('Y-m-d','2010-11-15','+10 day');
- function j7_getdate($format,$time='now',$ opt){
- return date("$format",strtotime("$time $opt"));
- }
- //出力 2010-11-25
- //strtotime の詳細な使用法
- /*
- echo strtotime(" now "), "n";
- echo strtotime("2000 年 9 月 10 日"), "n";
- echo strtotime("+1 日"), "n";
- echo strtotime("+1 週間"), " n ";
- echo strtotime("+1週間2日4時間2秒"), "n";
- echo strtotime("来週木曜日"), "n";
- echo strtotime("先週の月曜日"), "n" ";
- */
- ?>
-
コードをコピー
|