码迷,mamicode.com
首页 > 编程语言 > 详细

用算法合并数组

时间:2017-04-28 16:09:47      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:ret   rgs   range   turn   return   ++   test   int   合并   

<?php
function t(){
$c = func_num_args()-1;
$a = func_get_args();
//print_r($a);
for($i=0; $i<=$c; $i++){
if(is_array($a[$i])){
for($j=0; $j<count($a[$i]); $j++){
$r[] = $a[$i][$j];
}
} else {
die(‘Not a array!‘);
}
}
return $r;
}
//test
print_r(t(range(1,4),range(1,4),range(1,4)));
echo ‘<br/>‘;
$a = array_merge(range(1,4),range(1,4),range(1,4));
print_r($a);

用算法合并数组

标签:ret   rgs   range   turn   return   ++   test   int   合并   

原文地址:http://www.cnblogs.com/ghjbk/p/6781411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!