Zeropad a number
1 2 <?php 3 function zeropad($number, $limit) { 4 return (strlen($number) >= $limit) ? $number : zeropad("0" . $number, $limit); 5 } 6 ?>
DZone Snippets > albert006 > number
12883 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Albert Peschar http://www.cheatguide.nl/
1 2 <?php 3 function zeropad($number, $limit) { 4 return (strlen($number) >= $limit) ? $number : zeropad("0" . $number, $limit); 5 } 6 ?>