1
我有一個包含鍵和值的數組。密鑰始終設置,值可能爲「0」或NULL。我想要做的是:將所有具有值的鍵值對添加到新數組中。我爲此使用!empty()
。 問題是:此循環還將鍵添加到包含NULL或「0」的新數組中。!數組鍵的空()會調出「0」和NULL值
這裏是我的代碼:
// Loop over array and find all vars which are not empty
$i = 0;
foreach ($allInfoArray as $aKey=>$aVal) {
if (!empty($aKey[$i])) {
$relevantInfoArray[$aKey] = $aVal;
}
$i++;
}
之後,我使用var_dump()
檢查新的陣列。
array(11) { ["Key1"]=> string(3) "yes" ["Key2"]=> string(4) "1010" ["Key3"]=> string(4) "DED1" ["Key4"]=> string(7) "1234567" ["Group"]=> string(0) "" ["Dim"]=> string(0) "" ["Grd"]=> string(0) "" ["Nrm"]=> string(0) "" ["Flmc"]=> NULL ["Trmc"]=> NULL ["TrDim"]=> string(0) "" }
正如你所看到的,最後的值都是0或NULL。這似乎也是隨機發生的,其他具有值NULL或0的鍵不會添加到此數組中。
任何想法爲什麼這些鍵被添加到新的數組?非常感謝:)
@Jeff我也這麼認爲,但實際上結果似乎只有很少的值會結束。 –
你應該檢查'$ aVal' – RST