How do the keys of a PHP two-dimensional array change to numbers?

Source: Internet
Author: User
dump($array);
array(2) {  [0] => array(6) {    ["record_id"] => string(1) "1"    ["record_create_time"] => string(10) "1470650276"    ["record_create_people"] => string(12) "测试人员"    ["record_name"] => string(9) "vpn出售"    ["record_comment"] => string(20) "出售10个包月VPN"    ["record_money"] => string(6) "100000"  }  [1] => array(6) {    ["record_id"] => string(1) "2"    ["record_create_time"] => string(10) "1470650739"    ["record_create_people"] => string(12) "测试人员"    ["record_name"] => string(9) "服务器"    ["record_comment"] => string(28) "双核CPU2G内存40SDD硬盘"    ["record_money"] => string(5) "15000"  }}

I want to change it.

array(2) {  [0] => array(6) {    ["0"] => string(1) "1"    ["1"] => string(10) "1470650276"    ["2"] => string(12) "测试人员"    ["3"] => string(9) "vpn出售"    ["4"] => string(20) "出售10个包月VPN"    ["5"] => string(6) "100000"  }  [1] => array(6) {    ["0"] => string(1) "2"    ["1"] => string(10) "1470650739"    ["2"] => string(12) "测试人员"    ["3"] => string(9) "服务器"    ["4"] => string(28) "双核CPU2G内存40SDD硬盘"    ["5"] => string(5) "15000"  }}

Reply content:

dump($array);
array(2) {  [0] => array(6) {    ["record_id"] => string(1) "1"    ["record_create_time"] => string(10) "1470650276"    ["record_create_people"] => string(12) "测试人员"    ["record_name"] => string(9) "vpn出售"    ["record_comment"] => string(20) "出售10个包月VPN"    ["record_money"] => string(6) "100000"  }  [1] => array(6) {    ["record_id"] => string(1) "2"    ["record_create_time"] => string(10) "1470650739"    ["record_create_people"] => string(12) "测试人员"    ["record_name"] => string(9) "服务器"    ["record_comment"] => string(28) "双核CPU2G内存40SDD硬盘"    ["record_money"] => string(5) "15000"  }}

I want to change it.

array(2) {  [0] => array(6) {    ["0"] => string(1) "1"    ["1"] => string(10) "1470650276"    ["2"] => string(12) "测试人员"    ["3"] => string(9) "vpn出售"    ["4"] => string(20) "出售10个包月VPN"    ["5"] => string(6) "100000"  }  [1] => array(6) {    ["0"] => string(1) "2"    ["1"] => string(10) "1470650739"    ["2"] => string(12) "测试人员"    ["3"] => string(9) "服务器"    ["4"] => string(28) "双核CPU2G内存40SDD硬盘"    ["5"] => string(5) "15000"  }}

The key with "0" is resolved to a number.

Related documents: Http://php.net/manual/zh/lang ...

You want to convert the words:

foreach($array as &item) {    $item = array_values($item);}

The case code is as follows, you try

foreach($array as $key=>$val){    $array[$key] = array_values($val);}

Array_values


  
   "Bill","Age"=>"60","Country"=>"USA");print_r(array_values($a));?>
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.