Answers for "php if number length less than 1 than add leading 0"

PHP
1

php format int to 9 digits with preceding zeroes

str_pad($input, 9, "0", STR_PAD_LEFT);
Posted by: Guest on June-10-2020

Browse Popular Code Answers by Language