|
各位:
我要参数化一个38位随机变量,
开发人员获得一个38位随机变量的代码是这样的,用的是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;
}
}
我录入脚本后,也想获得一个随机38位数字,以利于我的压力测试。
可是这个参数怎么做参数化才能使和开发一样实现38位随机数呢?是不是要写dll?
这个dll是怎么用的啊?不会写呢?
谢谢各位给出出主意啊! |
|