Unique key generation

后端 未结 13 2189
一个人的身影
一个人的身影 2020-12-03 05:53

I looking for a way, specifically in PHP that I will be guaranteed to always get a unique key.

I have done the following:

strtolower(substr(crypt(tim         


        
相关标签:
13条回答
  • 2020-12-03 06:34

    I do believe that part of your issue is that you are trying to us a singular function for two separate uses... passwords and transaction_id

    these really are two different problem areas and it really is not best to try to address them together.

    0 讨论(0)
提交回复
热议问题