嗨數組裏面,我想知道是否有一個好的算法來搜索一個數組,它是另一個數組內內子的,搜索子串在PHP
我有類似:
陣列(
[0] => Array(
[0] => img src="1" />
[1] => img src="2" alt="" class="logo i-dd-logo" />
[2] => img src="3" alt="" />
[3] => img src="4" width="21" height="21" alt="" class="i-twitter-xs" />
[4] => img src="myTarget" width="21" height="21" alt="" class="i-rss" />
[5] => <img class="offerimage" id="product-image" src="6" title="" alt=""/>
[6] => <img class="offerimage" id="product-image" src="7" title="" alt=""/>
[7] => <img class="offerimage" id="product-image" src="8" title="" alt=""/>
[8] => <img src="9" width="16" height="16" />
)
[1] => Array(
[0] => src="1"
[1] => src="a" alt="" class="logo i-dd-logo"
[2] => src="b" alt=""
)
)
我想要做的是要知道目標的位置,例如[0] [4],但它並不總是相同
我現在正在做的是在另外一段時間內檢查whith strpos的子字符串,但也許有更好的方法來做到這一點,有什麼建議嗎?
感謝一切
更新代碼:
$ I = -1;
的foreach($ IMG爲$ outterKey => $ outter){
foreach($outter as $innerKey=>$inner){ $pos = strpos($img[$outterKey][$innerKey],"myTarget"); if (!$pos === false) { $i=$outterKey;$j=$innerKey; break 2; } } }
不......你的解決方案聽起來合理,如果你知道它總是2層深。 – mpen 2011-02-11 07:48:12
問題是,現在它只有2層深,但我想在可能性思考這個:( – Saikios 2011-02-11 07:51:14