>php教程 >php手册 >php 重组数组

php 重组数组

WBOY
WBOY원래의
2016-06-06 20:00:102077검색

一 .代码 TLog::info(var_export($res,true)); $res = array_map('array_shift', $res); TLog::info(var_export($res,true)); 二.结果 2015-01-09 11:06:34 INFO PID:0 /data/www/webapp/app_qjob_com/lib/SubscribeService.class.php line 343 ip:127.0.0.1

一 .代码
TLog::info(var_export($res,true));
$res = array_map('array_shift', $res);

TLog::info(var_export($res,true));

二.结果

2015-01-09 11:06:34     INFO    PID:0           /data/www/webapp/app_qjob_com/lib/SubscribeService.class.php    line 343        ip:127.0.0.1            array (
  0 => 
  array (
    'object_id' => '4',
  ),
  1 => 
  array (
    'object_id' => '1',
  ),
  2 => 
  array (
    'object_id' => '1',
  ),
  3 => 
  array (
    'object_id' => '1',
  ),
  4 => 
  array (
    'object_id' => '1',
  ),
  5 => 
  array (
    'object_id' => '1',
  ),
)
2015-01-09 11:06:34     INFO    PID:0           /data/www/webapp/app_qjob_com/lib/SubscribeService.class.php    line 346        ip:127.0.0.1            array (
  0 => '4',
  1 => '1',
  2 => '1',
  3 => '1',
  4 => '1',
  5 => '1',
)


三浏览器返回

{"errno":0,"data":["4","1","1","1","1","1"]}

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.