douxian0279 2017-08-21 18:58
浏览 49
已采纳

将文件数据文本传输到PHP和搜索数据中的关联数组

I'm a beginner in PHP. I have a text file like this:

Name-Id-Number
Abid-01-80
Sakib-02-76

I can take the data as an array but unable to take it as an associative array. I want to do the following things:

  • Take the data as an associative array in PHP.
  • Search Number using ID.
  • Find out the total of Numbers
  • 写回答

1条回答 默认 最新

  • drmgg4411 2017-08-21 20:07
    关注

    I believe I understand what you want, and it's fairly simple. First you need to read the file into a php array. That can be done with something like this:

    $filedata = file($filename, FILE_IGNORE_NEW_LINES);

    Now build your desired array using a foreach() loop, explode and standard array assignment. Your search requirement is unclear, but in this example, I make the associated array element into an array that is also an associative array with keys for 'id' and 'num'.

    As you create the new array, you can compute your sum, as demonstrated.

    <?php
    
    $filedata = array('Abid-01-80', 'Sakib-02-76');
    
    $lineArray = array();
    $numTotal = 0;
    
    foreach ($filedata as $line) {
        $values = explode('-', $line);
        $numTotal += $values[2];
        $lineArray[$values[0]] = array('id' => $values[1], 'num' => $values[2]);
    }
    
    echo "Total: $numTotal
    
    ";
    var_dump($lineArray);
    

    You can see this code demonstrated here

    Updated response:

    Keep in mind that notices are not errors. They are notifiying you that your code could be cleaner, but are typically suppressed in production.

    The undefined variable notices are coming because you are using:

    $var += $var without having initialized $var previously. Note that you were inconsistent in this practice. For example you initialized $numTotal, so you didn't get a notice when you used the same approach to increment it.

    Simply add just below $numTotal = 0:

    $count = 0;
    $countEighty = 0;
    

    Your other notices are occurring most likely due to a blank line or string in your input that does not follow the pattern expected. When explode is executed it is not returning an array with 3 elements, so when you try and reference $values = explode('-', $line); you need to make sure that $line is not an empty string before you process it. You could also add a sanity check like:

    enter code hereif (count($values) === 3) { // It's ok to process

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?
  • ¥15 matlab(相关搜索:紧聚焦)
  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计
  • ¥15 路易威登官网 里边的参数逆向
  • ¥15 Arduino无法同时连接多个hx711模块,如何解决?
  • ¥50 需求一个up主付费课程