dongzhan1383 2017-01-27 06:42
浏览 95
已采纳

字符串更改和枚举值PHP

i have a string, and I want to change the values to be in rearranged, for example i have this:

{
"code_2":"CODGD",
"description_2":"First product",
"price_2":"45.0",
"quantity_2":"1",
"quantityant_2":"1",
"subtotal_2":"45.0",
"code_3":"CODRT",
"description_3":"Second product",
"price_3":"12.68",
"quantity_3":"1",
"quantityant_3":"1",
"subtotal_3":"12.68",
"code_7":"CODPO",
"description_7":"Third product",
"price_7":"434.0",
"quantity_7":"1",
"quantityant_7":"1",
"subtotal_7":"434.0"
}

It goes like 2,3 and 7 but i need them to be 1,2,3 Every object are in group of 6; code_1, description_1, price_1, quantity_1, quantityant_1, subtotal_1. What I need is that the objects surronded by _ and " be renumerated, for example like this:

{
"code_1":"CODGD",
"description_1":"First product",
"price_1":"45.0",
"quantity_1":"1",
"quantityant_1":"1",
"subtotal_1":"45.0",
"code_2":"CODRT",
"description_2":"Second product",
"price_2":"12.68",
"quantity_2":"1",
"quantityant_2":"1",
"subtotal_2":"12.68",
"code_3":"CODPO",
"description_3":"Third product",
"price_3":"434.0",
"quantity_3":"1",
"quantityant_3":"1",
"subtotal_3":"434.0"
}

I been thinking in using str_replace but im a little lost.

Hope you can help me.

Thanks

Extra details I actually get the info in an array with this form:

 Array([code_2] => CODGD[description_2] => First product[price_2] => 45.0[quantity_2] => 1[quantityant_2] => 1[subtotal_2] => 45.0[code_3] => CODRT[description_3] => Second product[price_3] => 45.0[quantity_3] => 1[quantityant_3] => 1[subtotal_3] => 45.0[code_7] => CODPO[description_7] => Third product[price_7] => 23.43[quantity_7] => 1[quantityant_7] => 1[subtotal_7] => 23.43)
  • 写回答

2条回答 默认 最新

  • duanbanzhi4419 2017-01-27 06:49
    关注

    you can do it like below:-

    <?php
    $string = '{"code_2":"CODGD", "description_2":"First product", "price_2":"45.0", "quantity_2":"1", "quantityant_2":"1", "subtotal_2":"45.0", "code_3":"CODRT", "description_3":"Second product", "price_3":"12.68", "quantity_3":"1", "quantityant_3":"1", "subtotal_3":"12.68", "code_7":"CODPO", "description_7":"Third product", "price_7":"434.0", "quantity_7":"1", "quantityant_7":"1", "subtotal_7":"434.0"}';
    
    echo "<pre/>";print_r($array = json_decode($string,true));
    
    $final_array = array();
    $i = 1;
    for($j = 0;$j<3;$j++){
    foreach ($array as $key=>$val){
    
       $final_array[explode('_',$key)[0].'_'.$i] = $val;
     }
      $i++;
    }
    
    echo "<pre/>";print_r($final_array);
    

    Output:- https://eval.in/725237

    A much better solution (After looking my first attempt itself):-

    <?php
    $string = '{"code_2":"CODGD", "description_2":"First product", "price_2":"45.0", "quantity_2":"1", "quantityant_2":"1", "subtotal_2":"45.0", "code_3":"CODRT", "description_3":"Second product", "price_3":"12.68", "quantity_3":"1", "quantityant_3":"1", "subtotal_3":"12.68", "code_7":"CODPO", "description_7":"Third product", "price_7":"434.0", "quantity_7":"1", "quantityant_7":"1", "subtotal_7":"434.0"}';
    
    echo "<pre/>";print_r($array = json_decode($string,true));
    $final_array = array();
    $i = 1;
    $j = 1;
    foreach ($array as $key=>$val){
       if($j ==7){
         $i +=1;
         $j = 1;
       }
       $final_array[explode('_',$key)[0].'_'.$i] = $val;
       $j++;
    }
    
    echo "<pre/>";print_r($final_array);
    

    Output:- https://eval.in/725252

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵