Sys(2015)是一个方便的 VFP 函数,它返回该 VFP 会话的唯一值。你可以在这里阅读
Iif是内联 if-else-endif 语句 .. 就像 Excel 一样
更新
SYS(2015) 在 PHP 中?我不知道.. 但是如果我们在 PHP 中讨论随机字符串,您可以使用它
function rand_string( $length ) {
$chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
$size = strlen( $chars );
for( $i = 0; $i < $length; $i++ ) {
$str .= $chars[ rand( 0, $size - 1 ) ];
}
return $str;
}
我从这个链接得到了这个,并从这个链接得到了基本的想法
关于另一部分可能是这样的:
$randomresult = 0
$srandom = ""
If (INT(RAND()*1000000000) = 851390329)
{
$randomresult = int(rand(-1)) * 1000000
}
else
{
$randomresult = int(rand()) * 1000000
}
$srandom=str_pad(ltrim(strval($randomresult),"0")),6,"0",STR_PAD_LEFT)
所以,也许我们可以在 PHP 中制作这样的 foxpro 代码:
$cKey = rand_string(10) . str_pad(ltrim(strval($randomresult),"0")),6,"0",STR_PAD_LEFT)
至少你可以的想法......