Read xml data with php_PHP tutorial
Summary: I encountered a problem at work today. Because our project data is too small, we need to borrow data from web search. They only provide us with an xml interface. Therefore, we need to convert xml data into html and present it to everyone. Since the project is based on PHP, I abandoned using JS to read XML and chose to continue using PHP. However, I have never made such an attempt before, so I searched a lot of online information and consulted the PHP work manual. I found that using the parser function in the PHP4 environment is a better choice (of course you can also use DOM, but you need to The server is reconfigured and php5 supports DOM better).
Although I have never come across this kind of problem before, it was solved quickly. However, during the process of solving and exploring, I found that although there is a lot of information about this kind of information on the Internet, it is uneven, and many descriptions are not very detailed. The operation manual is more useful.
Okay, let’s get down to business:
parser is a parser built into PHP to process xml. Its work consists of three events: start tag, read data, and end tag.
That is to say, when processing xml, whenever the start tag, data and end tag are encountered, the function will take corresponding actions to complete the conversion of xml data.
Introduction to functions related to xml reading in php:
Quote:
-------------------------- -------------------------------------------------- ---
Object XML parsing function description
Element xml_set_element_handler() The beginning and end of the element
Character data xml_set_character_data_handler() The beginning of character data
External entity xml_set_external_entity_ref_handler() The external entity appears
Not Parsing external entities xml_set_unparsed_entity_decl_handler() The occurrence of unresolved external entities
Processing instruction xml_set_processing_instruction_handler() The occurrence of processing instructions
The occurrence of notation declaration xml_set_notation_decl_handler() The occurrence of notation declaration
Default xml_set_default_handler() Others do not specify handler functions Event
------------------------------------------------ ----------------------------------
Let me give you a small example using parser. Function to read xml data:
$parser = xml_parser_create(); //Create a parser editor
xml_set_element_handler($parser, "startElement", "endElement");// The corresponding functions when setting up tag triggers are startElement and endElenment respectively
xml_set_character_data_handler($parser, "characterData");//The corresponding functions when setting up data reading
$xml_file="1.xml";// Specify the xml file to be read, which can be url

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
