PHP uses the DOMDocument class to generate HTML instances (including common tag elements ). In this section, we will learn how to use core PHP to generate HTML files. recently, when I was querying php.net, I found the DOMDocument class very
In this section, let's take a look at how to generate HTML files using core PHPRecently, when I was querying php.net, I found domdocument this class very interesting, can be used to generate XML or HTML files, DOMDocument provides us with a series
This article mainly introduces the use of the DOMDocument class in PHP to generate HTML instances, including common tag elements, such as forms, tables, and CSS styles. Finally, I wrote a complete example, for more information about how to use core
This section describes how to use core PHP to generate HTML files. Recently, When I Was querying php.net, I found that the DOMDocument class is very interesting and can be used to generate XML or HTML files, DOMDocument provides us with a series of
There are two traditional ways to deal with XML files: SAX and DOM. SAX based on the event trigger mechanism, a scan of the XML file, complete the processing to be done; Dom constructs the entire XML file as a DOM tree, which is processed by
1, XML file content
The code is as follows
Copy Code
Wu Ben 13222053785 Wu Ben 215151981159test15077887624 Satan Hair satan hair 132423142134 Aston Flight 1234123421342134
2, generate a new XML file
Create a DOMDocument object using DOM extension, add elements to the document using the DOMDocument object method, and generate the document using the save () or saveXML () method, you can also use SimpleXML to quickly solve the problem... create a
DOMDocument is a self-contained function in php. next I will introduce how to use DOMDocument to generate xml documents and how to parse xml files. if you need it, refer to it. array real... DOMDocument is a self-contained function in php. next I
There are many ways to write XML in PHP. Here we will mainly introduce the usage of domdocument, which is basically the same as that in JS. It is actually very simple.
There are four files in total: Create, add, delete, and modify. the variables are
/*Use the domdocument object to generate an RSS document.Applicable to PhP 5.0 and later versions*/
$ Dom = new domdocument ('1. 0 ');// $ Dom-> xmlencoding = "gb2312";
// Add an RSS Element$ RSS = $ dom-> createelement ('rss ');$ Dom-> appendchild (
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.