我有两组变量,每组变量都包含日,小时,分钟和秒。 $ startDay,$ endDay,$ startHour,$ endHour,$ startMin,$ EndMin,$ startSec,$ EndMin,$ EndSec
如何添加添加这些字段以获得2次的总和。
use Date::Calc;
use strict;
use warnings;
($totalDays,$totalHours,$totalMin,$totalSeconds)= Add_Delta_DHMS($startDay,$startHour, $startMin,$startSec,$endDay,$endHour,$EndMin,$EndSec);
我试过这个,但它没有用。有人可以帮我这个吗?