I\'m trying to generate a unique ID in php in order to store user-uploaded content on a FS without conflicts. I\'m using php, and at the moment this little snippet is responsib
uniqid() is what you're looking for in most practical situations.
You can make it even more "uniq" by adding a large random number after it.