php取出二维数组中某个键对应的值,并组成数组,过滤掉重复的值
- Array
- (
- [0] => Array
- (
- [0] => http://xxx.com/
- [1] => http://www.aseoe.com/
- )
- [1] => Array
- (
- [0] => http://xxx.com/
- )
- [2] => Array
- (
- [0] => http://www.ancto.net/
- [1] => http://xxx.com/3333
- [2] => http://xxx.com/3333
- )
- [3] => Array
- (
- [0] => http://ccc.com/
- )
- )
取出数组中的链接,并放到一个一维数组中,过滤掉重复的值
- //将$old_arr二维数组转换为一维数组
- foreach($old_arr as $key => $val) {
- foreach($val as $value) {
- $new_arr[] = $value;
- }
- }
- //去除重复的地址
- $one_arr = array_unique($new_arr);
本站欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-21-513-1.html
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-21-513-1.html