Answers for "single digit convert into double digit php"

PHP
1

laravel number add 0 before

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

Code answers related to "single digit convert into double digit php"

Browse Popular Code Answers by Language