php生成数组的使用示例 php全组合算法
更新时间:2014年01月16日 10:11:05 作者:
要求实现一个7个元素的数组,取出这个数组中的5个元素,生成新的数组,这些数组是唯一的
复制代码 代码如下:
<?php
$arr = array(1,2,3,4,5);
/*
@ res 组装好的每一注的每个元素
@ $a 临时数组
@ $index 数组索引
@ $arr 请求的数组
@ $b 最后要的结果
*/
$a = array();
$b = array();
$total = 0;
format($a,0,$arr);
function format($res,$index,$arr){
global $total;
global $b;
$new_arr = $res;
$n_arr = array();
if($index == count($arr)){
if(count($new_arr)==5){
$b[] = $new_arr;
echo "<pre>";
$total++;
}
return;
}
format($new_arr,$index+1,$arr);
$new_arr[] = $arr[$index];
format($new_arr,$index+1,$arr);
}
echo "<pre>";
print_r($b);
echo "</pre>";
相关文章
php实现JWT(json web token)鉴权实例详解
这篇文章主要介绍了php实现JWT(json web token)鉴权实例详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2019-11-11thinkphp6使用mysql悲观锁解决商品超卖问题的实现
这篇文章主要介绍了thinkphp6使用mysql悲观锁解决商品超卖问题的实现2021-11-11Bo-Blog专用的给Windows服务器的IIS Rewrite程序
Bo-Blog专用的给Windows服务器的IIS Rewrite程序...2007-08-08
最新评论