Where The Streets Have No Name

for문에 증가수만들때 01,02,03.... 99 만드는 방법 본문

Developement/PHP

for문에 증가수만들때 01,02,03.... 99 만드는 방법

highheat 2006. 6. 27. 20:44
for($i=1; $i<99; $i++)
{

   $i2 = sprintf('%02d',$i);

   print($i2.'<br>');
}