我有PHP
一個問題,我有一些陣列
$hp = array('samsung', 'iphone', 'blackberry');
$samsung = array(array('Tab', 3,2),array('Note', 4), array('Mini', 5, 6, 8));
$iphone = array(array('2G', 2, 3, 6),array('4S', 5), array('5', 2,2), array('3GS', 2,7));
$blackberry = array(array('onix', 2),array('curve', 2, 6), array('armstrong', 5), array('gemini', 8. 1));
我需要從類型馬力的列表的計數值($ hp),我已經嘗試過但失敗;
for($p=0; $p=count($hp); $p++){ //this ok can get count of $hp = 3
for($i=0; $i=count($$hp[$p]); $i++){ //this ok can get count of type from $hp[index], if samsung = 3, if iphone= 4, if blackberry = 4
for($u=0; $i=count($$hp[$p][$i]); $u++){ //this fail to get count the next level of hp type, should be if samsung[0] = 3, samsung[1] = 2, samsung[2]=4
//any code here
}
}
}
有人可以幫助我?
謝謝
很好..這項工作..非常感謝你,,, – Hans