如何增加变量中的秒数?
增加日期..:
date("m/d/Y h:i:s a", time() + 30);
但我想这样做:
$seconds = 59;
$increase = 3;
$result = $seconds + $increase; // 62
我希望它在第二次停止60并重新计算,结果应该变为2而不是60
答案 0 :(得分:4)
你想要模数运算符:
$seconds = 59;
$increase = 3;
$result = ($seconds + $increase) % 60; // 2