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

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号