When I use the PHP function format_number to convert my variable value which is like 123456789
, it converts it with thousand separators like this: 123,456,789
. What I want is to format it like this: 12,34,56,789
Is there any way to achieve this?