douru5373 2017-07-14 12:23
浏览 38
已采纳

PHP:将数组值拆分为键和值[关闭]

I have a txt file which contains:

1:2
2:5
3:10
4:1

I need to be able to add to these numbers. For example I want to add to the last line +5:

1:2
2:5
3:10
4:6

How can I achieve this? I was wondering if the right way was to input the file into an array but I have no idea how to do this as I need to separate the numbers into keys and values, I guess?

  • 写回答

3条回答 默认 最新

  • dongshan4316 2017-07-14 12:35
    关注

    The problem as described is pretty generic, but I can do some assumptions to help you.

    The initial txt file is basically a key-value store:

    1:2
    2:5
    3:10
    4:1
    

    Assuming that the first number is the key, you should tell your algorithm to perform a +x sum to the line with key n.

    In (untested & not optimized) php code:

    function addToStore($destKey, $numberToSum) {
        $newStore = [];
    
        foreach(file('store.txt') as $line) {
            list($key, $value) = explode(':', $line);
    
            if( $key === $destKey) {
                $value += $numberToSum;
            }
    
            newStore[] = "$key:$value";
        }
    
        file_put_contents('store.txt', implode("
    ", $newStore));
    }
    

    Then call it as:

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

报告相同问题?

悬赏问题

  • ¥15 yolov8边框坐标
  • ¥15 matlab中使用gurobi时报错
  • ¥15 WPF 大屏看板表格背景图片设置
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真