码迷,mamicode.com
首页 > Web开发 > 详细

PHP生成唯一订单号

时间:2018-05-24 13:11:32      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:生成   int   时分秒   imp   function   and   pad   lod   null   

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生成唯一订单号

标签:生成   int   时分秒   imp   function   and   pad   lod   null   

原文地址:https://www.cnblogs.com/jiqing9006/p/9082322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!