是否有任何PHP框架/库允许我执行以下操作:
$element = $html->getElementByName("name");
$element->changeAttribute("class", "myClass");
echo $html->display;
我知道使用javascript可以做到这样的事情,但我需要它是PHP。
答案 0 :(得分:4)
不需要框架。只需使用PHP's DOMDocument。
答案 1 :(得分:2)
查看DOMDocument课程中的各种方法。当然,请记住,您需要先使用loadHTML将html加载到DOMDocument对象中,然后再进行操作。
答案 2 :(得分:1)
示例:
<?php
$doc = new DOMDocument();
$doc->load( 'books.xml' );
$books = $doc->getElementsByTagName( "book" );
foreach( $books as $book )
{
$authors = $book->getElementsByTagName( "author" );
$author = $authors->item(0)->nodeValue;
$publishers = $book->getElementsByTagName( "publisher" );
$publisher = $publishers->item(0)->nodeValue;
$titles = $book->getElementsByTagName( "title" );
$title = $titles->item(0)->nodeValue;
echo "$title - $author - $publisher\n";
}
?>
只需使用DOMDocument课程(适用于HTML使用loadHTMLFile
或loadHTML
代替load
)