php number with leading zeros code example
Example 1: add zeros in front of number php
<?php
$num = 4;
$num_padded = sprintf("%02d", $num);
echo $num_padded; // returns 04
?>
Example 2: format a number with leading zeros in php
sprintf('%06d', '12')