add zeros in front of number php

PHP
<?php
$num = 4;
$num_padded = sprintf("%02d", $num);
echo $num_padded; // returns 04
?>
Source

Also in PHP: