I have a variable which contains the value 1234567
.
I would like it to contain exactly 8 digits, i.e. 01234567
.
Is there a PHP function for that?
I have a variable which contains the value 1234567
.
I would like it to contain exactly 8 digits, i.e. 01234567
.
Is there a PHP function for that?
Use sprintf
:
sprintf('%08d', 1234567);
Alternatively you can also use str_pad
:
str_pad($value, 8, '0', STR_PAD_LEFT);