摘要: 传统的创建uuid的方法是自己写个函数实现随机 <?php function create_uuid($prefix="") { $chars = md5(uniqid(mt_rand(), true)); $uuid = substr ( $chars, 0, 8 ) . '-' . substr 阅读全文
posted @ 2021-04-21 11:13 李照耀 阅读(1921) 评论(0) 推荐(0) 编辑