append a character in front of prime number code example
Example 1: add zeros in front of number php
<?php
$num = 4;
$num_padded = sprintf("%02d", $num);
echo $num_padded; // returns 04
?>
Example 2: how to remove first character from string in javascript
str = str.substring(1);