Answers for "leading zeros php"

PHP
1

add zeros in front of number php

<?php
$num = 4;
$num_padded = sprintf("%02d", $num);
echo $num_padded; // returns 04
?>
Posted by: Guest on April-25-2020
0

format a number with leading zeros in php

sprintf('%06d', '12')
Posted by: Guest on March-03-2021

Browse Popular Code Answers by Language