首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

订单号_14位_转

2012-12-23 
订单号__14位_转http://bbs.phpchina.com/thread-216769-1-2.html??????phpfunction orderId($length4)

订单号__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笔订单不会重复。
//
?>

?

?

?

热点排行