I need to pad the integer part with 0, the integer part must be at least 2 characters
str_pad( 2 ,2,\"0\",STR_PAD_LEFT);// 02 -> works str_pad( 22 ,2
You can also use printf() functions to pad the integer :
printf()
Something like (codepad):