码迷,mamicode.com
首页 > 其他好文 > 详细

生存uuid

时间:2014-11-19 14:09:46      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:io   ar   for   on   cti   bs   c   ui   php   

function guid(){
if (function_exists(‘com_create_guid‘)){
return com_create_guid();
}else{
mt_srand((double)microtime()*10000);//optional for php 4.2.0 and up.
$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;
}
}

生存uuid

标签:io   ar   for   on   cti   bs   c   ui   php   

原文地址:http://www.cnblogs.com/yingjie13/p/4108007.html

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