使用“ for循环”添加前导零

时间:2019-06-12 23:55:18

标签: php for-loop

我创建了一个表头,它代表一个月中的几天。我需要在$ day的值前加上0,只有它是一个数字。

<?php
$current_day = date('d');
for($day=01;$day<=31 ;$day++){
    $column = '<th ';
    if($current_day > $day){
        $column .= 'class="disabled" style="cursor: not-allowed;width: 3.5%;text-align: center;align-content: center; height: 15px;font-size:22px;font-weight:bold;background-color:#cccccc;" title="edit disabled"';
    }
    $column .= ' style="width: 3.5%;text-align: center;align-content: center; height: 15px;font-size:22px;font-weight:bold">'.$day.'</th>';
    echo $column;
}
?>

我该如何实现?

0 个答案:

没有答案