2013-12-21 34 views
-1

我希望能夠通過類名從網頁回顯任何元素(和內容)。通過類名稱從html中回顯所有href(或div)

在HTML頁面

我已經somting這樣的:

<a class="one" href="#"><img class="imagine" src="/css/full.png"/><span class="txt">one</span></a>  
<a class="two" href="#"><img class="imagine" src="/css/full.png"/><span class="txt">two</span></a>  
<a class="thry" href="#"><img class="imagine" src="/css/full.png"/><span class="txt">thry</span></a>  
<a class="one" href="#"><img class="imagine" src="/css/full.png"/><span class="txt">one</span></a>  
<a class="thry" href="#"><img class="imagine" src="/css/full.png"/><span class="txt">thry</span></a>  
<a class="two" href="#"><img class="imagine" src="/css/full.png"/><span class="txt">two</span></a> 

我已經follwing正在做的事情,但不是萬能的PHP代碼:

<?php 
$url = "./div.html"; 
$html = @file_get_contents($url); 
$content= $html; 
$first_step = explode('<a class="one">' , $content); 
$second_step = explode("</a>" , 
$first_step[1]); 
echo $second_step[0]; 
?> 

這個代碼是找到了我需要但其回聲只有第一個匹配,它只回顯<a class="one"</a>之間的內容

我需要回顯所有匹配以回顯所有元素的href內容。

回答

相關問題