当前位置:Gxlcms > PHP教程 > PHP生成唯一订单号方法算法

PHP生成唯一订单号方法算法

时间:2021-07-01 10:21:17 帮助过:19人阅读

在开发购物类电子商务网站的时候,常常涉及到生成订单,如何保证每个订单唯一呢,在PHP开发网站中,PHP生成唯一订单号方法

  1. /**
  2. * 生成唯一订单号
  3. */
  4. public function build_order_no()
  5. {
  6. $no = date('Ymd').substr(implode(NULL, array_map('ord', str_split(substr(uniqid(), 7, 13), 1))), 0, 8);
  7. //检测是否存在
  8. $db = M('Order');
  9. $info = $db->where(array('number'=>$no))->find();
  10. (!empty($info)) && $no = $this->build_order_no();
  11. return $no;
  12. }

人气教程排行