dongliang1223 2014-05-21 06:53
浏览 87
已采纳

使用PHP中的索引值来分解字符串值

I have a string that has been concatenated by the rows and columns that has be separated by using the special characters. Below is my code:

$strMaterialDetails = '13-"9"Strawberry%*DEALER%*15%*25%*375%*7.500%*7.500%*28.13%*2.000%*2.000%*6.94@^$14-"9" Yellow white Acrylic Long Pile Ext Roller Set%*DISTRIBUTOR%*45%*75%*3375%*2.500%*2.500%*84.38%*5.000%*5.000%*164.53@^$';

$pairs = explode('@^$', $strMaterialDetails);

foreach ($pairs as $pair) {
    list($product, $store, $qty, $unit, $total_price, $discount, $discount_percen, $discount_value, $tax, $tax_percen, $tax_val) = explode('%*', $pair);

    echo $store;
}

It works fine I have to insert the values into the database if I print the $store it will print DEALERDISTRIBUTOR

I want to seperate this I don't know how to do. The string here entered is unknown.

Please give any suggestion.

  • 写回答

2条回答 默认 最新

  • dst2017 2014-05-21 07:14
    关注

    Why not store it in an array?

    $stores = array();
    foreach ($pairs as $pair) {
        list($product,$store,$qty,$unit,$total_price,$discount,$discount_percen,$discount_value,$tax,$tax_percen,$tax_val) = explode('%*', $pair);    
        $stores[] = $store;
    }
    
    print_r($stores); // will contain DEALER at 0th index and DISTRIBUTOR at 1st index
    

    DEMO

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

报告相同问题?

悬赏问题

  • ¥20 iOS绕地区网络检测
  • ¥15 python验证码滑块图像识别
  • ¥15 根据背景及设计要求撰写设计报告
  • ¥15 QT6颜色选择对话框显示不完整
  • ¥20 能提供一下思路或者代码吗
  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥15 DS18B20内部ADC模数转换器