douguo6472 2018-05-03 09:30
浏览 21
已采纳

PHP:将字符串转换为数组

I have an input string that has the following value:

"[2018-05-08][1][17],[2018-05-08][2][31],[2018-05-08][3][40],[2018-05-08][4][36],[2018-05-09][1][21]"

I want to convert this into a php array that looks something like this:

$date=2018-05-08;
$meal=1;
$option=17;

can someone help me please !

  • 写回答

4条回答 默认 最新

  • doubi1797 2018-05-03 09:46
    关注

    Simple parser for You

    $arr1 = explode (",","[2018-05-08][1][17],[2018-05-08][2][31],[2018-05-08][3][40],[2018-05-08][4][36],[2018-05-09][1][21]"); // making array with elements like : [0] => "[2018-05-08][1][17]"
    $arr2;
    $i = 0;
    foreach($arr1 as $item){
        $temp = explode ("][",$item); // array with elements like [0] => "[2018-05-08", [1] => "1", [2] => "21]"
        $arr2[$i]['date'] = substr( $temp[0], 1 ); // deleting first char( '[' )
        $arr2[$i]['meal'] = $temp[1];
        $arr2[$i]['option'] = substr($temp[2], 0, -1); // deleting last char( ']' )
        $i++;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 excel 上下按钮 显示行
  • ¥20 云卓h12pro 数传问题
  • ¥20 请问有人知道怎么用工艺库里面的sdb文件通过virtuoso导出来library里面每个cell的symbol吗?
  • ¥20 海思 nnie 编译 报错
  • ¥50 决策面并仿真,要求有仿真结果图
  • ¥15 关于路由器的路由协议配置
  • ¥15 springboot接入微信支付SDK
  • ¥50 大区域的遥感影像匹配 怎么做啊
  • ¥15 求解答:pytorch跑yolov8神经网络受挫
  • ¥20 Js代码报错问题不知道怎么解决