|  Crew PHP |  | 
    
    
        
            
                <?php
$num = 4;
$zerofill = 3;
echo str_pad($num, $zerofill, "0", STR_PAD_LEFT);
/* Returns the same wanted result of '004' */
?> <?php$num = 4;$zerofill = 3;  /* Returns the same wanted result of '004' */?>
   
 dat vond ik op php.net, ik hoop dat dit je voldoende helpt
 |