如果有人能幫助我,這將是偉大的確定它是簡單的東西,但對於我的生活我無法找到如何做到這一點我有兩個時間戳,我想將它們加在一起( $ timestamp1 + $ timestamp2)我有第一部分想通了,但我不能得到我想要這樣的結果到目前爲止,我有這個兩個時間戳總結在一起
$flight_time = strtotime($flight_time_1)+strtotime($flight_time_2)+strtotime($flight_time_3)+strtotime($flight_time_4)+strtotime($flight_time_5)+strtotime($flight_time_6)+strtotime($flight_time_7)+strtotime($flight_time_8)+strtotime($flight_time_9)+strtotime($flight_time_10);
$flight_time = date("H:i:s", $flight_time);
,並且給了我時間16時20分○○秒這是完美 第二代碼我有這
$sqlcow = "SELECT system_flight FROM uav_checks WHERE uav_id = '$registration'";
$result1cow=mysql_query($sqlcow);
while ($arow = mysql_fetch_array($result1cow)){
$system_flight2 = $arow['system_flight'];
}
並與此代碼我得到th是28:07:00這是完美的
我需要的是這16時20分00秒+ 28:07:00
然而,當我試圖給他們以各種方式,我知道可能加在一起,它不會工作所以我難倒請誰能幫助我
謝謝
想要的結果是什麼? – 2014-09-30 14:22:14
您可能正在使用**絕對時間**,這意味着時間戳具有**年,月和日**信息。這就是爲什麼它可能不起作用。 – tfrascaroli 2014-09-30 14:25:37
[這個問題](http://stackoverflow.com/questions/11556731/how-we-can-add-two-date-intervals-in-php)(和接受的答案)可能會有所幫助。 – 2014-09-30 14:28:28