php pad number with leading zeros code example
Example 1: prepend 0 to number php
str_pad($month, 2, '0', STR_PAD_LEFT);
Example 2: php pad leading zeros
str_pad($value, 8, '0', STR_PAD_LEFT);
Example 3: format a number with leading zeros in php
sprintf('%06d', '12')