$firstarray = array("first"=>'pakistan',"second"=>'bangladesh',"third"=>'');
我有上面的數組有一些鍵有價值和一些鍵沒有價值。所以我想搜索這個數組並且爲那些沒有價值的鍵放置沒有。把值放在多維數組鍵
這是我想要的結果:
$newfirstarray = array("first"=>'pakistan',"second"=>'bangladesh',"third"=>'No');
我在網上搜索上找到的功能,如array_filter()
,array_map()
。我不知道它要麼與此
工作,我的小試
$firstarray = array("first"=>'pakistan',"second"=>'bangladesh',"third"=>'');
foreach($firstarray as $keyx){
if($keyx==''){
$keyx='no'; //sorry for this example, at this point i don't know how to put values.
print_r($firstarray);
}
}
這段代碼顯示了我原來的數組,而不是把不作爲第三鍵的值。
在下面添加了正確的'foreach()'。 – AbraCadaver