我创建了一个表头,它代表一个月中的几天。我需要在$ 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;
}
?>
我该如何实现?