Developer Console
Login
Register
Back
Add Leading zero PHP
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
<?php $num = 4; $num_padded = sprintf("%02d", $num); echo $num_padded; // returns 04 ?>