簡體   English   中英

在foreach內部指定了foreach

[英]specified foreach inside foreach

我有一些...我想一些不合邏輯的邏輯,我自己想...現在我可以向您展示:

$new ['period_10th'] = $periodic_items [9] ;
            foreach ($new ['period_10th'] as $item) { $po_10th [] = $item -> po_id ; }
          $new ['uni_10'] = array_unique($po_10th) ;
          foreach ($new ['uni_10'] as $po_id) {
            $po = $this -> model_prcsys -> get_po_by_id (md5($po_id)) ;
            $pos_10 [] = $po ['po_id'] ;
            $currency10 [] = $po ['currency'] ;
          }
          $cur_pos_10 = array_unique($currency10) ;
          foreach ($cur_pos_10 as $currency) {
            $new ['po_arr_10'] = $this -> model_prcsys -> get_pos_with_curr ($pos_10,$currency) ;
              foreach ($new ['po_arr_10'] as $key) {
                $test [] = $key -> total_line_price;
              }
              print_r($test);echo "<br><br>";
              print_r(array_sum($test));echo "<br><br>";
          }

那會很有價值

Array ( [0] => 20700000.00 [1] => 10340000.00 [2] => 4160000.00 [3] => 8150000.00 [4] => 9065000.00 [5] => 3500000.00 [6] => 2530000.00 [7] => 650000.00 [8] => 4395000.00 [9] => 17100000.00 [10] => 11250000.00 [11] => 6900000.00 [12] => 300000.00 [13] => 15750000.00 )

114790000

Array ( [0] => 20700000.00 [1] => 10340000.00 [2] => 4160000.00 [3] => 8150000.00 [4] => 9065000.00 [5] => 3500000.00 [6] => 2530000.00 [7] => 650000.00 [8] => 4395000.00 [9] => 17100000.00 [10] => 11250000.00 [11] => 6900000.00 [12] => 300000.00 [13] => 15750000.00 [14] => 1200000.00 )

115990000

我需要計算第一個數組直到結束數組(與$ cur_pos_10一樣多),但是它總是為第二個值重新計算整個數組。 請幫助我,我真的很抱歉我的英語不好。

我需要這個:第一個結果計算數組[0]到[13]; 僅第二個結果計算數組[14];

很難理解,不清楚應該做什么代碼,但是看起來您只需要在foreach之前定義用於存儲結果的變量,因為$test []會將值推入數組$test而變量$testforeach定義並累積所有多個循環的結果。 所以試試這個:

$new ['period_10th'] = $periodic_items [9] ;
foreach ($new ['period_10th'] as $item) { $po_10th [] = $item -> po_id ; }
$new ['uni_10'] = array_unique($po_10th) ;

$pos_10 = []; // added
$currency10 = []; // added
foreach ($new ['uni_10'] as $po_id) {
  $po = $this -> model_prcsys -> get_po_by_id (md5($po_id)) ;
  $pos_10 [] = $po ['po_id'] ; // possibly similar problem if whole code is in loop or is executed multiple times
  $currency10 [] = $po ['currency'] ; // possibly similar problem if whole code is in loop or is executed multiple times
}

$cur_pos_10 = array_unique($currency10) ;
foreach ($cur_pos_10 as $currency) {
  /* in your code
      in first iteration variable $test is undefined
      in second iteration variable $test is defined and count($test) == 14
  */
  $new ['po_arr_10'] = $this -> model_prcsys -> get_pos_with_curr ($pos_10,$currency) ;
  $test = []; // added, variable $test is set to an empty array and erase previous results
  foreach ($new ['po_arr_10'] as $key) {
    $test [] = $key -> total_line_price;  // problem was here
  }
  print_r($test);echo "<br><br>";
  print_r(array_sum($test));echo "<br><br>";
}

縮進和對齊的代碼很重要。 我已縮進並對齊您的代碼。 正如@Kazz指出的那樣,問題在於您沒有重置$ test變量。 代碼中的一些注釋也將很有價值。

<?php

$new['period_10th'] = $periodic_items[9] ;
foreach ($new['period_10th'] as $item) {
    $po_10th[] = $item->po_id ;
}

$new['uni_10'] = array_unique($po_10th) ;
foreach ($new['uni_10'] as $po_id) {
    $po           = $this->model_prcsys->get_po_by_id (md5($po_id)) ;
    $pos_10[]     = $po ['po_id'] ;
    $currency10[] = $po ['currency'] ;
}

$cur_pos_10 = array_unique($currency10) ;
foreach ($cur_pos_10 as $currency) {
    $new['po_arr_10'] = $this->model_prcsys->get_pos_with_curr ($pos_10,$currency) ;

    $test = array(); // this was missing and probably causing problems
    foreach ($new['po_arr_10'] as $key) {
        $test[] = $key->total_line_price;
    }

    print_r($test);
    echo "<br><br>";
    print_r(array_sum($test));
    echo "<br><br>";
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM