2011-12-16 50 views
0

我使用有一個測試代碼simple_dom_html:在圖像標籤中替換alt時出錯?

<?php 
include 'simple_html_dom.php'; 
$content = '<img src="name1.jpg" alt="name"><img src="name2.jpg" alt="name2">'; 
$html = new simple_html_dom(); 
$html->load($content); 
$array_alt = array(); 
foreach($html->find('img') as $element) { 
    $element->src = "new src"; 
    $array_alt[] = $element->alt; 
} 
for($i=0; $i<count($array_alt); $i++) { 
    $array_alt[$i] = "test" . $i; 
} 
echo $html; 

OUTPUT:

$html= '<img src="new src" **alt="name"**><img src="newsrc" **alt="name2"**>'; 

錯誤時,回聲$內容,ALT不名 「NAME1」, 「NAME2」 到 「測試1」 改「 test2「,如何解決它?

+0

你得到什麼錯誤? – xdazz 2011-12-16 07:12:07

回答

2

更改你的兩個循環到:

//.... 
$i=0; 
foreach($html->find('img') as $element) { 
    $element->src = "new src"; 
    $element->alt = "test" . $i; 
    $i++; 
} 
//.... 
0
<?php 
include 'simple_html_dom.php'; 

$content = '<img src="name1.jpg" alt="name"><img src="name2.jpg" alt="name2">'; 
$html = new simple_html_dom(); 
$html->load($content); 

$i=0; 
foreach($html->find('img') as $element) { 
    $element->src = "new src"; 
    $element->alt = "test".$i; 
    $i += 1; 
} 

echo $html; 

?> 
相關問題