I have
- tutorial 1 how to make this
- tutorial 21 how to make this
- tutorial 2 how to make this
- tutorial 3 how to make this
and i need
- tutorial 01 how to make this
- tutorial 21 how to make this
- tutorial 02 how to make this
- tutorial 03 how to make this
so i can order them properly. (adding leading 0 when single digit is found)
What would be a php method to convert?
thanks in advance
note-please make sure that it identifies the single digit numbers only first and then add the leading zero
If it is coming from a DB, this is the way to do it on a sql query:
This is will get the max value in the table and place the leading zeros.
If it's hardcoded (PHP), use str_pad()
This is a small example of what I did on a online php compiler, and it works...
str_pad()
sprintf()