generate 0 before integer php 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: php format int to 9 digits with preceding zeroes
str_pad($input, 9, "0", STR_PAD_LEFT);