I'm trying to printf
a variable with some 000 on the left side but only print the 000 and no print the variable.
$activePlayers1 = array(3)
numero = $activePlayers1[$i];
printf('000',$numero);
The result of this is 000 and no print the 3.