MyBB Community Forums

Full Version: Changing UID format?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I change MyBB UID's to four digits?

i.e. I want UID's such as 1, 54, 987 to become 0001, 0054, 0987
If you're asking how to put zeroes in front of a number in PHP,

sprintf("%04d", 54) results in "0054"

It's not really possible to change the UIDs themselves. They're stored as integers in the database so leading zeroes will be removed as it goes into the database.

So all you could do is print them out with leading zeroes to the users, or in URLs.

I don't see how that would be useful or desireable though.