Ho trovato questa su php.net
Cerca la funzione number_format. Ciao!Codice PHP:// $num = 4; $zerofill= 3; returns "004"
function zerofill ($num,$zerofill) {
while (strlen($num)<$zerofill) {
$num = "0".$num;
}
return $num;
}
Ho trovato questa su php.net
Cerca la funzione number_format. Ciao!Codice PHP:// $num = 4; $zerofill= 3; returns "004"
function zerofill ($num,$zerofill) {
while (strlen($num)<$zerofill) {
$num = "0".$num;
}
return $num;
}
eCommerceRS.NET - Commerciante, vendi on-line!
Il mio nick è mircov e non mirco!!!