How would I go about 'zero filling' an integer?
ie
1 becomes 0001 40 becomes 0040 174 becomes 0174
$filled_int = sprintf("%04d", $your_int)