PHP 随机唯一标识符
在我们的预订系统的建设中,客户可以在线查看他们的预订。目前,其页面的 URL 已创建为序列号。所以 /booking1
、/booking2
、/booking3
等...
我宁愿有唯一的名称,有点像 JSFiddle 的做法。一系列字母和数字。
这可能吗?
In the construction of our booking system client can view their bookings online. At the moment the URL of their page is created as a sequential number. So /booking1
, /booking2
, /booking3
etc...
I'd rather have unique name a bit like the JSFiddle way of doing it. A series of letters and numbers.
Is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
uniqid 足以满足您的需求吗?
http://php.net/manual/en/function.uniqid.php
Would uniqid be good enough for what you need?
http://php.net/manual/en/function.uniqid.php
uniqid 函数似乎就是您正在寻找的。
uniqid function seems to be what you are looking for.
您可以使用
uniqid("bookingr", false);
you can use
uniqid("bookingr", false);