It depends on how you create the UUID - if you use PHP uniqid , then these are the right-most digits that are more "unique". However, if you are going to crop the data, then there is no real guarantee that it will be unique in any case.
Regardless, I would say that this is a somewhat suboptimal approach - can't you use a unique (and ideally significant) text link string instead of an ID in the query string? (It is difficult to find out without knowing about the problem area, but, in my opinion, this is always the best approach, even if SEO, etc. It is not a factor.)
If you use this approach, you can also allow MySQL to generate unique identifiers, which is probably significantly more sensible than trying to handle this in PHP.
source share