Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、簡単な質問です。Php の時間関連の関数は私を混乱させます ;-(
与えられた 2 つの変数
$start = "2013-07-25 20:24:13" ('Y-m-d H:i:s'); $duration = "0:55" ('H:i');
に追加する$durationにはどうすればよい$startですか? 結果は次のようになります。
$duration
$start
"2013-07-25 21:19:13"
DateTime()一緒に使うDatePeriod()
DateTime()
DatePeriod()
$dt = new DateTime('2013-07-25 20:24:13'); $dt->add(new DatePeriod('P55M')); echo $dt->format('Y-m-d H:i:s');