PHP生成唯一订单号
Posted 认真生活、快乐工作 - 马云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP生成唯一订单号相关的知识,希望对你有一定的参考价值。
function create_order_no() {
$order_no = date('Ymd').substr(implode(NULL, array_map('ord', str_split(substr(uniqid(), 7, 13), 1))), 0, 8).rand(1000,9999);
return $order_no;
}
function create_order_no() {
$order_no = date('Ymd') . str_pad(mt_rand(1, 99999), 5, '0', STR_PAD_LEFT).rand(1000,9999);
return $order_no;
}
function create_order_no() {
$yCode = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J');
$order_no = $yCode[intval(date('Y')) - 2017] . strtoupper(dechex(date('m'))) . date('d') . substr(time(), -5) . substr(microtime(), 2, 5) . sprintf('%02d', rand(1000, 9999));
return $order_no;
}
如果担心重复,可以加个uid,或者时分秒。
以上是关于PHP生成唯一订单号的主要内容,如果未能解决你的问题,请参考以下文章