Is there any hashing method for php to hash (just integer to string) in shortest lenght?
for example
input : 10565
output : rwk4
input : 40853353246
output : orhg0ut04h
if there is not hashing like this
Is there any way(function) to do it?
You can use the base_convert function for what you want, but note that a hash is something else entirely.