fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. $str = '081';
  6.  
  7. $newStr = sprintf("%'.03d", $str);
  8.  
  9. var_dump($str, $newStr);
Success #stdin #stdout 0.02s 25684KB
stdin
Standard input is empty
stdout
string(3) "081"
string(3) "081"