我正在尝试使用 getHours 和 getMinutes 在以后的函数中使用它们。问题是我总是希望最终数字是 3 或 4 位和 2 位。发生的情况是分钟为 0-9 时,1:04 的结果为 14。这是我的代码,它不能解决问题。
$hours = (new Date).getHours(),
$mins = (new Date).getMinutes();
function addZero($hours) {
if ($hours < 10) {
$hours = "0" + $hours;
}
return $hours;
}
function addZero($mins) {
if ($mins < 10) {
$mins = "0" + $mins;
}
return $mins;
}
$nowTimeS = $hours + "" + $mins;
// Convert string with now time to int
$nowTimeInt = $nowTimeS;