SyntaxFix
Write A Post
Hire A Developer
Questions
Use sprintf :
sprintf
sprintf('%08d', 1234567);
Alternatively you can also use str_pad:
str_pad
str_pad($value, 8, '0', STR_PAD_LEFT);