dqw7121 2012-05-21 11:50
浏览 9
已采纳

超出最大执行时间的多维数组

I have a list of csv files which I need php to convert to one large multidimensional array, testing with just 2 php exceeds the max execution time when conduction the second conversion.

1st conversion being from csv to numerical multidimensional array

2nd conversion being from numerical multidimensional array to string and numerical multidimensional array, which is where php produces the error.

My code is as follows:

function parse($data) {
    $i = 0;
    while (isset($data[$i])) {
      $row = 0;
      while (isset($data[$i][$row])) {
        switch ($row) {
          case 0:
            //General Item details
            $fOv = 0;
            while (isset($data[$i][$row][$fOv])) {
              $array['Item'][$i][$data[$i][row][$fOv]] = $data[$i][$row + 1][$fOv];
              $fOv++; // THIS IS THE PLACE OF THE ERROR
            }
            break;
          case 2:
            //General Transaction details
            $fOv = 0;
            while (isset($data[$i][$row][$fOv])) {
              $array['Transaction'][$i][$data[$i][$row][$fOv]] = $data[$i][$row + 1][$fOv];
              $fOv++;
            }
            break;
          case 4:
            //Buyer details
            $fOv = 0;
            while (isset($data[$i][$row][$fOv])) {
              $array['Transaction']['Buyer'][$i][$data[$i][$row][$fOv]] = $data[$i][$row + 1][$fOv];
              $fOv++;
            }
            break;
          case 6:
            //Shipping details
            $fOv = 0;
            while (isset($data[$i][$row][$fOv])) {
              $array['Transaction']['Shipping'][$i][$data[$i][$row][$fOv]] = $data[$i][$row + 1][$fOv];
              $fOv++;
            }
            break;
          case 8:
            //Status details
            $fOv = 0;
            while (isset($data[$i][$row][$fOv])) {
              $array['Transaction']['Status'][$i][$data[$i][$row][$fOv]] = $data[$i][$row + 1][$fOv];
              $fOv++;
            }
            break;
        }
      $row + 2;
      }
      $i++;
    }
    return $array;
  }

This is how the numerical array looks like:

array (
  0 => array (
    0 => array (
      0 => 'field 1', 1 => 'field 2', 2 => 'field 3' //continues to field 17
    )
    1 => array (
      0 => 'value 1', 1 => 'value 2', 2 => 'value 3' //continues to value 17
      //these values are for the fields in array[0][0]
    )
    2 => array ( //same as array[0][0] )
    3 => array ( //same as array[0][1], values for array[0][2] )
    4 => array ( //same as array[0][0] )
    5 => array ( //same as array[0][1], values for array[0][4] )
    6 => array ( //same as array[0][0] )
    7 => array ( //same as array[0][1], values for array[0][6] )
    8 => array ( //same as array[0][0] )
    9 => array ( //same as array[0][1], values for array[0][8] )
  )
  1 => array (
    //same structure as array[0], different details
  )
)

what I'm trying to get for the string and numerical array:

array (
  0 => array (
    'Item' => array (
      0 => array ( 
        'field 1' => 'value 1'
        'field 2' => 'value 2'
        //continues to field 17
      )
    )
    'Transaction' => array (
       0 => array (
        'field n' => 'value n' //repeated until field 17
        'Buyer' => array (
          //same as above in array[0]['Item'][0]
        )
        'Shipping' => array (
          //same as above in array[0]['Item'][0]
        )
        'Status' => array (
          //same as above in array[0]['Item'][0]
        )
      )
    )
  )
  1 => array (
    //same structure as array[0], different values
  )
)

Any help is greatly appreciated, thanks in advance.

EDIT: I don't want to increase the max execution time, the script should take less than 30 seconds, the same as the working script I have which stores the data in the csv files in the first place.

  • 写回答

2条回答 默认 最新

  • doutu2017 2012-05-21 11:54
    关注

    The quick and dirty approach:

    ini_set('max_execution_time', 0);
    

    Although be aware that if your script goes into an infinite loop, it'll never end :) More likely is that removing the time limit will cause you to hit a memory limit, so you may do well to run this via the command line to avoid crashing apache.

    Edit: Try altering your code not to use variable names like $iii as this is very hard to read. You may find that this alone will make the solution obvious.

    Edit: $row + 2; ought to be $row += 2;

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

报告相同问题?

悬赏问题

  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊
  • ¥15 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写
  • ¥20 Qcustomplot缩小曲线形状问题
  • ¥15 企业资源规划ERP沙盘模拟