...
|
...
|
@@ -595,4 +595,37 @@ function base64_de_md5(string $str){ |
|
|
|
|
|
return base64_decode(implode('',$strs).'==');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 把最大最小之间的数生成 二维数组
|
|
|
* [[2,3,4],[5,6,7],....]
|
|
|
* @param $min
|
|
|
* @param $max
|
|
|
* @param int $len
|
|
|
* @return array
|
|
|
* @author:dc
|
|
|
* @time 2025/3/7 0:06
|
|
|
*/
|
|
|
function minMaxToArray($min, $max,$len=1000) {
|
|
|
$result = [];
|
|
|
$currentGroup = [];
|
|
|
|
|
|
for ($i = $min; $i <= $max; $i++) {
|
|
|
$currentGroup[] = $i;
|
|
|
|
|
|
// 每1000个数就创建一个新组
|
|
|
if (count($currentGroup) == $len) {
|
|
|
$result[] = $currentGroup;
|
|
|
$currentGroup = []; // 重置当前组
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// 如果还有剩余的数,添加到结果中
|
|
|
if (!empty($currentGroup)) {
|
|
|
$result[] = $currentGroup;
|
|
|
}
|
|
|
|
|
|
return $result;
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|