本文介绍了从php转换为vb?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有人可以将这段PHP代码转换成可以在vb或c#中工作的东西吗?
提前谢谢:
Can someone please convert this chunk of php code to something that will work in vb or c#?
Thanks ahead of time.:
function generate_serial() {
static $max = 60466175; // ZZZZZZ in decimal
return strtoupper(sprintf(
"%05s-%05s-%05s-%05s-%05s",
base_convert(mt_rand(0, $max), 10, 36),
base_convert(mt_rand(0, $max), 10, 36),
base_convert(mt_rand(0, $max), 10, 36),
base_convert(mt_rand(0, $max), 10, 36),
base_convert(mt_rand(0, $max), 10, 36)
));
推荐答案
这篇关于从php转换为vb?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!