A little dab'll do ya
Code Snippets
Force Leading Zero
<?php
function forceLeadingZero($int) {
return (int)sprintf('%02d',$int);
}
?>
Forces leading zero to integers.
was | now
1 | 01
2 | 02
3 | 03
10 | 10
100 | 100
99 | 99
str_pad?
str_pad($input, 2, “0″, STR_PAD_LEFT);
str_pad is probably more semantically accurate, but sprintf() is faster.