Leading zeroes in php
- by sanders
Hello,
I would like to present a list from 0 to 59 of with the numbers 0 to 9 have a leading zero.
This is my code but it doesn't work so far. Any idea's?
for($i=0; $i<60; $i++){
if($i< 10){
sprintf("%0d",$i);
}
array_push($this->minutes,$i);
}