php判断并输出多维数组成绩,,这种多维数组怎么输出呢

求助,这种多维数组如何输出呢?

Array

(

[0] => Array

(

[url] => http://127.0.0.1/show.php?id=6638

)

[1] => Array

(

[url] => http://127.0.0.1/show.php?id=6637

)

[2] => Array

(

[url] => http://127.0.0.1/show.php?id=6636

)

[3] => Array

(

[url] => http://127.0.0.1/show.php?id=6635

)

[4] => Array

(

[url] => http://127.0.0.1/show.php?id=6634

)

[5] => Array

(

[url] => http://127.0.0.1/show.php?id=6633

)

[6] => Array

(

[url] => http://127.0.0.1/show.php?id=6632

)

[7] => Array

(

[url] => http://127.0.0.1/show.php?id=6631

)

[8] => Array

(

[url] => http://127.0.0.1/show.php?id=6630

)

[9] => Array

(

[url] => http://127.0.0.1/show.php?id=6629

)

[10] => Array

(

[url] => http://127.0.0.1/show.php?id=6628

)

[11] => Array

(

[url] => http://127.0.0.1/show.php?id=6627

)

[12] => Array

(

[url] => http://127.0.0.1/show.php?id=6626

)

[13] => Array

(

[url] => http://127.0.0.1/show.php?id=6625

)

[14] => Array

(

[url] => http://127.0.0.1/show.php?id=6624

)

[15] => Array

(

[url] => http://127.0.0.1/show.php?id=6623

)

[16] => Array

(

[url] => http://127.0.0.1/show.php?id=6622

)

[17] => Array

(

[url] => http://127.0.0.1/show.php?id=6621

)

[18] => Array

(

[url] => http://127.0.0.1/show.php?id=6620

)

)

数组打印出来是这种格式,我想最后输出是这样的格式,怎么做呢?请大神赐教

150203103.gif

http://127.0.0.1/show.php?id=6638

http://127.0.0.1/show.php?id=6637

http://127.0.0.1/show.php?id=6636

http://127.0.0.1/show.php?id=6635

http://127.0.0.1/show.php?id=6634

http://127.0.0.1/show.php?id=6633

http://127.0.0.1/show.php?id=6632

http://127.0.0.1/show.php?id=6631

http://127.0.0.1/show.php?id=6630

http://127.0.0.1/show.php?id=6629

http://127.0.0.1/show.php?id=6628

http://127.0.0.1/show.php?id=6627

http://127.0.0.1/show.php?id=6626

http://127.0.0.1/show.php?id=6625

http://127.0.0.1/show.php?id=6624

http://127.0.0.1/show.php?id=6623

http://127.0.0.1/show.php?id=6622

http://127.0.0.1/show.php?id=6621

http://127.0.0.1/show.php?id=6620

------解决思路----------------------

var_dump(array_column($data,'url'));

去看下array_column函数就知道了

------解决思路----------------------

if(! function_exists('array_column')) :

function array_column($input, $column_key, $index_key=null) {

$res = array_map(function($tmp) use ($column_key) { return $tmp[$column_key]; }, $input);

if(! empty($index_key)) $res =  array_combine(array_column($input, $index_key), $res);

return $res;

}

endif;

$records = array(

array(

'id' => 2135,

'first_name' => 'John',

'last_name' => 'Doe',

),

array(

'id' => 3245,

'first_name' => 'Sally',

'last_name' => 'Smith',

),

array(

'id' => 5342,

'first_name' => 'Jane',

'last_name' => 'Jones',

),

array(

'id' => 5623,

'first_name' => 'Peter',

'last_name' => 'Doe',

)

);

$first_names = array_column($records, 'id');//'first_name');

print_r($first_names);

$last_names = array_column($records, 'last_name', 'id');

print_r($last_names);Array

(

[0] => 2135

[1] => 3245

[2] => 5342

[3] => 5623

)

Array

(

[2135] => Doe

[3245] => Smith

[5342] => Jones

[5623] => Doe

)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值