Example of using SimpleXML to parse and process HTML/XML in PHP

WBOY
Release: 2023-09-08 09:42:01
Original
983 people have browsed it

Example of using SimpleXML to parse and process HTML/XML in PHP

Example of parsing and processing HTML/XML using SimpleXML in PHP

Introduction:
SimpleXML is a powerful and easy-to-use extension in PHP for parsing and processing HTML or XML documents. It provides a concise way to access and manipulate the elements and properties of a document. This article will introduce how to use SimpleXML to parse and process HTML or XML documents in PHP, and provide some practical code examples.

  1. Parsing XML documents
    First, we need to load the XML document and parse it into a SimpleXMLElement object, so that we can easily use the methods provided by SimpleXML to access and manipulate the document.
$xmlString = '<?xml version="1.0" encoding="UTF-8"?>
<books>
    <book>
        <title>PHP 7 in Practice</title>
        <author>John Smith</author>
        <price>29.99</price>
    </book>
    <book>
        <title>JavaScript: The Good Parts</title>
        <author>Douglas Crockford</author>
        <price>19.99</price>
    </book>
</books>';

$xml = simplexml_load_string($xmlString);
Copy after login

The above code parses a simple XML document containing information about two books into a SimpleXMLElement object $xml.

  1. Accessing and outputting node information
    Next, we can use the methods provided by the SimpleXMLElement object to access and output node information in the XML document.
echo "第一本书的标题:" . $xml->book[0]->title . "
";
echo "第一本书的作者:" . $xml->book[0]->author . "
";
echo "第一本书的价格:" . $xml->book[0]->price . "
";

echo "第二本书的标题:" . $xml->book[1]->title . "
";
echo "第二本书的作者:" . $xml->book[1]->author . "
";
echo "第二本书的价格:" . $xml->book[1]->price . "
";
Copy after login

The above code outputs the title, author and price information of the two books in the XML document.

  1. Traversing XML documents
    You can use a foreach loop to traverse the nodes in the XML document.
foreach ($xml->book as $book) {
    echo "书名:" . $book->title . "
";
    echo "作者:" . $book->author . "
";
    echo "价格:" . $book->price . "

";
}
Copy after login

The above code outputs the information of each book in the XML document in turn.

  1. Parsing HTML documents
    In addition to parsing XML documents, SimpleXML can also be used to parse HTML documents. Below is an example of parsing an HTML document.
$htmlString = '<html>
    <body>
        <h1>Hello, World!</h1>
        <p>This is a paragraph.</p>
    </body>
</html>';

$html = simplexml_load_string($htmlString);

echo "页面标题:" . $html->body->h1 . "
";
echo "段落内容:" . $html->body->p . "
";
Copy after login

The above code parses the HTML document into a SimpleXMLElement object $html, and outputs the page title and paragraph content.

Summary:
Using SimpleXML to parse and process HTML or XML documents can greatly simplify the process of operating documents in PHP. This article explains how to use SimpleXML to parse and process HTML or XML documents, and provides some practical code examples. I hope this article can help you better understand and use SimpleXML extensions.

The above are only the basic usage of SimpleXML. SimpleXML also provides many advanced functions and methods, such as document filtering, namespace support, etc. You can refer to PHP official documentation or online resources to learn more.

The above is the detailed content of Example of using SimpleXML to parse and process HTML/XML in PHP. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!