订单创建(直接用)
Posted zlicon
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了订单创建(直接用)相关的知识,希望对你有一定的参考价值。
function createOrderNumber($orderId) { $n = 8; //订单号年月日后位数 $len = strlen($orderId); $x = $n - $len; $str = ‘‘; if ($x > 0) { for ($i = 1; $i <= $x; $i++) { $str .= ‘0‘; } } return date(‘Ymd‘) . $str . $orderId; }
以上是关于订单创建(直接用)的主要内容,如果未能解决你的问题,请参考以下文章