Answers for "php what happend when put 0 in front of number"

PHP
3

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 "php what happend when put 0 in front of number"

Browse Popular Code Answers by Language