Answers for "add 0 to front of number in php"

PHP
5

prepend 0 to number php

str_pad($month, 2, '0', STR_PAD_LEFT);
Posted by: Guest on June-30-2020
1

add zeros in front of number php

<?php
$num = 4;
$num_padded = sprintf("%02d", $num);
echo $num_padded; // returns 04
?>
Posted by: Guest on April-25-2020

Code answers related to "add 0 to front of number in php"

Browse Popular Code Answers by Language