I've been trying to solve this for a day. I already searched the net for possible more close enough solution to my problem. I found a little bit same problem but only to conversion of time to i don't know if it is an integer.
To make it more clear what I'm trying to do is to convert a TIME (ex. 00:01:20) to an integer and multiply it in a intger (ex. 208). I'm trying to mimic how you can multiply an integer to time in EXCEL but to no avail. I only derived different number whenever i tried to convert the PRODUCT of the two. I'll show you how I did it to make it more clear. Pardon me for resorting to this because I couldn't really figure it out and I'm not a pro in PHP. Thank you so much in advance for any possible solution to this.
$time = '00:01:20';
$number = 208;
$converted = strtotime($time);
$a = $converted * $number;
$b = date("h:i:s",$a);
The result on this will be 06:10:24 which is wrong If you are going to do this on EXCEL what you will get is 04:37:20
I'm really having hard time trying to figure it out on how i can make it appear same to excel. Thank you so much.