订单号__14位_转
http://bbs.phpchina.com/thread-216769-1-2.html
?
?
?
?
?
<?php
function orderId($length=4) {
??? //$date = date('mdhis');
??? $date = date('mdHi');
??? $oid_filename = 'tmp.txt';
??? $oid = @file_get_contents($oid_filename);
??? if($oid >= str_pad('9',$length,'9')) {
??????? $oid = 1;
??? } else {
??????? $oid+=1;
??? }
??? file_put_contents($oid_filename,$oid);
??? $oid = str_pad($oid,$length,'0',0);
??? return $date.$oid;
}
echo orderId();
//跟淘宝的一样,14位。写文件部分自己改,或入库,或Memcache,
//或XX请自便……理论上如果你没淘宝的交易量或你每分钟会有超过99999笔订单不会重复。
//
?>
?
?
?