fork download
  1. <?php
  2. $num = 10;
  3. $num1 = str_pad($num, 4, '0', STR_PAD_LEFT);
  4. echo $num1;
  5. // your code goes here
Success #stdin #stdout 0.03s 26032KB
stdin
Standard input is empty
stdout
0010