If the number is smaller than 10-digit number then it should to add automatically '0', so that the number get to fill to 10-digit number. Example:
$number = "123456";
Then add '0' -> it should to show: 0000123456
If example 7-digit number then so: 0001234567
How I code it? Thank you for helping.