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条)

报告相同问题?

悬赏问题

  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来