Codice PHP:
<?php
$input 
"ciccio"// Stringa input
$length 10;    // Lunghezza desiderata
$input str_pad($input$length" "STR_PAD_LEFT);
?>