PHP
文章平均质量分 73
Scorpiolmy
PHP是世界上最好的语言
展开
-
常见的php函数
/* * ************************* * 生成随机字符串,可以自己扩展 //若想唯一,只需在开头加上用户id https://zhuanlan.zhihu.com/p/29749906 * $type可以为:upper(只生成大写字母),lower(只生成小写字母),number(只生成数字) * $len为长度,定义字符串长度 * mark 2017/8/转载 2018-01-15 16:49:30 · 239 阅读 · 0 评论 -
红包金额概率计算
自己在项目里面用了一下,感觉还不错!!! //红包金额 public function redPacket() { $a = $this->__randomFloat(2,3); $b = $this->__randomFloat(3,5); $c = $this->__randomFloat(5,7); $d = $this->__randomFloat(7,8转载 2018-01-10 17:00:51 · 2938 阅读 · 1 评论