0

我们希望使用 Simple PHP DOM 查看和修改特定元素,

<?php     
    include('../../../../dom/simple_html_dom.php');
    $html = new simple_html_dom();
    $html->load_file('http://www.google.com');   

    foreach ($tags as $tag)
    {           
        //something like that match with $string, if value found then the particular element edited by the <u>$string</u>.
        if(stristr($tag->innertext,$string)) {}    
    }

    echo $html ; 
?>

我们想要以数组的形式获取所有 HTML 元素。我们必须检查每个元素,如果其中一个与我们的数据匹配,那么我们会调整该特定元素。

4

1 回答 1

0

您可以尝试以下方法来提取所有<ul> .. </ul>

include 'simple_html_dom.php';
$html = file_get_html('http://www.yahoo.com/');
foreach($html->find('ul') as $element)
    echo $element->plaintext . '<br>';
于 2012-09-27T08:57:22.943 回答