Members

Technology Zones

IBM Learning Center

Articles

Hosted By

MaximumASP

Info

Rated
Read 22,798 times

Related Categories

Output number with leading zeros

altphpfaq

Here's simple example using the printf function to output a number with leading zeros.

<?
$number = 15;
printf("%05d", $number);
?>

Comments