047-PHP数字前面补零,固定位数补0时间:2023-03-08 18:17:36 <?php #PHP 数字前面补零 固定位数补0 $num=128; $num=str_pad($num,8,"0",STR_PAD_LEFT); echo $num; //输出:0128 ?>