dongtun1872 2017-11-24 06:58
浏览 39
已采纳

如何在while函数中设置foreach中的Increment id

here is my code

if (($handle = fopen("example.csv", "r")) !== FALSE) 
{
    $row = 1;
    while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) 
    {
         $prod_startid=1;
         foreach ($Prod_op_reindex as $size_op_key => $size_op_value) 
         {
            echo  $prod_startid;
         }

    }
}

i want $prod_startid can Increment in foreach example: first time foreach the $prod_startid will be 1 2 3 4,

then after while function,in foreach the $prod_startid will be 5 6 7...

thanks everyone!

update: the arrays not the same,because some array have empty value ,so i have to use array_values function, for example:

Array ( [1] => XXS [2] => XS [3] => S [4] => M [5] => L [6] => XL [7] => XXL )

Array ( [1] => M [2] => L [3] => XL )

  • 写回答

2条回答 默认 最新

  • dongshang3309 2017-11-24 07:06
    关注

    do you want this:

    if (($handle = fopen("example.csv", "r")) !== FALSE) {
    $row = 1;
    $counter = 0;
    while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
    $prod_startid=$counter+1;
    foreach ($Prod_op_reindex as $size_op_key => $size_op_value) {
       echo  $prod_startid;
        $prod_startid++;
        $couter = $prod_startid;
       }
     }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
  • duanhe0817825 2017-11-24 07:05
    关注

    Is this what you want?

    if (($handle = fopen("example.csv", "r")) !== FALSE) {
      $row = 1;
      $prod_startid = 0;
      while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
        foreach ($Prod_op_reindex as $size_op_key => $size_op_value) {
          $prod_startid++;
          echo $prod_startid;
        }
      }
    }
    
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 eclipse无法正常运行
  • ¥15 定义了函数,但是无法根据函数定义触发器
  • ¥20 5变量卡诺图化简得出与非门电路图
  • ¥20 位置依赖的碱基序列独热编码
  • ¥15 Python爬取交通拥堵指数数据
  • ¥15 使用vba抓取重定向网页问题
  • ¥20 付费需求测试程序(细谈)。
  • ¥15 为什么这段c++代码会报这么多语法错误?
  • ¥20 如何利用C语言实现用最小二乘法选配两个经验公式
  • ¥50 vue-codemirror如何对指定行 指定位置的 字符进行背景颜色或者字体颜色的修改?