Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
算法是什么。我想使用相同的算法来手动创建我自己的 session_ids,我也想在本地存储它。
我意识到我可以在服务器端创建它(使用会话函数)并发送它......但我只是更喜欢自己散列/编码它......+我想要增加我喜欢的复杂性的选项......摆弄它等等
相关: 1
谢谢。
PHP 默认使用 md5,但可以配置为使用 sha-1 以及从 PHP 5.3 开始的许多其他散列算法。
您可以选择自己的算法,但它至少应该和 md5 一样强大,并且可能应该更强大,因为 md5 有点过时了。