㈠ 怎麼用JS或php實現自動生成單據編號(以10+當天日期的格式)
php:
$number
=
"10".date("Ymd",time());
可以得到10開頭緊接年月日及時間(到秒)如1020120603
$number
=
"10".date("YmdHis",time());
可以得到10開頭緊接年月日及時間(到秒)如1020120603231120
如果怕有重復可以在接一些隨機數
$number
.=
rand(1000,9999);
㈡ thinkphp訂單號怎麼生成
PHP 生成訂單號,GUID 方法
生成訂單號
function build_order_no() {
return date('Ymd').substr(implode(NULL, array_map('ord', str_split(substr(uniqid(), 7, 13), 1))), 0, 8);
}
生成GUID
function guid() {
if (function_exists('com_create_guid')) {
return com_create_guid();
} else {
mt_srand((double)microtime()*10000);
$charid = strtoupper(md5(uniqid(rand(), true)));
$hyphen = chr(45);
$uuid = chr(123)
.substr($charid, 0, 8).$hyphen
.substr($charid, 8, 4).$hyphen
.substr($charid,12, 4).$hyphen
.substr($charid,16, 4).$hyphen
.substr($charid,20,12)
.chr(125);
return $uuid;
}
}
㈢ php生成訂單編號的幾種方法
第一種
第二種慎悔消寬知
第三種
第四種
第五種前纖
㈣ php 如何生成訂單號
訂單號一般是根據用戶ID,購買時間,商品ID生成的模李笑,
比如用戶ID:123,購買時間:1353364885,商擾啟品ID:567,
則訂單號可旦含以是:123-1353364885-567