Codice PHP:
<?php
function FormattaNumero($numero)
{
    return 
sprintf("%03d"$numero);
}

?>