2017-02-09 70 views
0

我有一個關於這段代碼的問題,我試圖弄清楚,因爲我是PHP新手。這裏是代碼:輸出一個字符串來描述數組中的顏色和新數量?

$fruit_counts=array('apple'=>3, 'banana'=>4, 'orange'=>0); 
$fruit_colors=array('apple'=>'red', 'banana'=>'yellow', 'orange'=>'orange', 'plum'=>'purple'); 

如何輸出描述每個水果顏色和新數量(計數)的字符串?任何幫助將非常感激。謝謝。

+1

反覆試驗和練習。 – RiggsFolly

+1

和['foreach'](http://php.net/manual/en/control-structures.foreach.php)。 – roberto06

+0

但首先決定你要做什麼關於五顏六色的水果,沒有數可用 – RiggsFolly

回答

3

因爲它似乎就像所有的水果會有顏色,但不一定是數量,只是循環通過顏色,看看是否有相應的水果的數量:

$fruit_counts = array('apple' => 3, 'banana' => 4, 'orange' => 0); 
$fruit_colors = array('apple' => 'red', 'banana' => 'yellow', 'orange' => 'orange', 'plum' => 'purple'); 

foreach ($fruit_colors as $fruit => $color) { 
    $qty = isset($fruit_counts[$fruit]) ? $fruit_counts[$fruit] : 0; 
    echo "Fruit: $fruit | Color: $color | Qty: $qty" . '<br>'; 
} 
+2

@justbaron至少這傢伙並沒有偷我的李子 – RiggsFolly

+0

完美我的注意力太多,數量太多了,它讓我失望了,但現在這變得更有意義了。非常感謝! – user6405037

+0

不客氣..! – BizzyBob

2

如果你想所有的水果數量,與關聯顏色:

$fruit_counts=array('apple'=>3, 'banana'=>4, 'orange'=>0); 
$fruit_colors=array('apple'=>'red', 'banana'=>'yellow', 'orange'=>'orange', 'plum'=>'purple'); 

foreach($fruit_counts as $Fruit=>$Count){ 
    $Colour = "None!"; 
    if(isset($fruit_colors[$Fruit])){ 
     $Colour = $fruit_colors[$Fruit]; 
    } 
    echo "<p>$Fruit ($Colour): $Count</p>"; 
} 

,或者,如果你想所有的水果色彩,搭配聯想計數:

foreach($fruit_colors as $Fruit=>$Colour){ 
    $QTY = 0; 
    if(isset($fruit_counts[$Fruit])){ 
     $QTY = $fruit_counts[$Fruit]; 
    } 
    echo "<p>$Fruit ($Colour): $QTY</p>"; 
} 
+2

嘿男人我的李子在哪裏 – RiggsFolly

+0

哈,可愛的東西。 – JustBaron

+1

我仍然不知道你用我的李子做了什麼 – RiggsFolly

-1
 $fruit_colors=array('apple'=>'red', 'banana'=>'yellow', 'orange'=>'orange', 'plum'=>'purple'); 
     $fruit_counts=array('apple'=>3, 'banana'=>4, 'orange'=>0); 


      foreach($fruit_colors as $key=>$color){ 
       if($fruit_counts[$key]){ 
        echo "Color :".$key." Count: ".$fruit_counts[$key]; 
       } 
      } 
+0

_Warning:array_combine():兩個參數都應該有相同數量的element_ – RiggsFolly

+0

有一定的空間可以改善它的回答。至少你試圖回答這個問題。 –

相關問題