Answers for "how to automatically add zeros in front of a number format in 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

Code answers related to "how to automatically add zeros in front of a number format in php"

Browse Popular Code Answers by Language