Last Updated: February 25, 2016
·
472
· robinvdvleuten

Prepend zeros to a given number

To prepend for example 8 zeros to a given number, use PHP's str_pad function:

str_pad($value, 8, '0', STR_PAD_LEFT));