PHP SimpleXML Parser

SimpleXML is an extension for PHP that makes it easy to work with and get XML data.

SimpleXML Parser

SimpleXML is a parser that works with trees.

If you know how an XML document is structured or laid out, SimpleXML makes it easy to get the name, attributes, and text of an element.

SimpleXML turns an XML document into a data structure like a collection of arrays and objects that you can iterate through.

SimpleXML needs less lines of code than DOM or the Expat parser to read text data from an element.

Installation

Since PHP 5, the SimpleXML functions have been built into the core of PHP. You don\’t have to install anything to use these functions.

Read From String in PHP SimpleXML

XML data can be read from a string using the PHP simplexml load string() function.

Let\’s say we have a variable with XML data in it, like this:

$testXMLvar =
\”<?xml version=\’1.0\’ encoding=\’UTF-8\’?>
<example>
<to>Ram</to>
<from>Shyam</from>
<heading>Message</heading>
<body>Lets do tracking this weekend!</body>
</example>\”;

The example below shows how to use the simplexml load string() function to get XML data from a string:

Example

<!DOCTYPE html>
<html>
<body>

<?php

$testXMLvar =
\”<?xml version=\’1.0\’ encoding=\’UTF-8\’?>
<example>
<to>Ram</to>
<from>Shyam</from>
<heading>Message</heading>
<body>Lets do tracking this weekend!</body>
</example>\”;

$xml=simplexml_load_string($testXMLvar ) or die(\”Error: create object faild\”);
print_r($xml);
?>

</body>
</html>

Output

SimpleXMLElement Object ( [to] => Ram[from] => Shyam[heading] => Message[body] => Lets do tracking this weekend! )

More PHP XML Parser

Visit our PHP XML Parser Reference page to find out more about the XML Parser reference.

Related Article
50+ PHP Interview Questions and Answers 2023

1. Differentiate between static and dynamic websites. Static Website The content cannot be modified after the script is executed The Read more

All We Need to Know About PHP Ecommerce Development

  Many e-commerce sites let you search for products, show them off, and sell them online. The flood of money Read more

PHP Custom Web Development: How It Can Be Used, What Its Pros and Cons Are,

PHP is a scripting language that runs on the server. It uses server resources to process outputs. It is a Read more

PHP Tutorial

PHP Tutorial – Complete Guide for Beginners to Advanced Welcome to the most comprehensive PHP tutorial available online at PHPOnline.in Read more

Introduction of PHP

Introduction to PHP – Learn PHP from Scratch with Practical Examples Welcome to your complete beginner's guide to PHP. Whether Read more

Syntax Overview of PHP

Syntax Overview of PHP (2025 Edition) Welcome to phponline.in, your one-stop platform for mastering PHP. This comprehensive, SEO-rich tutorial on Read more

Environment Setup in PHP

Setting Up PHP Environment (Beginner’s Guide) If you’re planning to learn PHP or start developing websites using PHP, the first Read more

Variable Types in PHP

PHP Variable Types: Complete Beginner's Guide to PHP Data Types Welcome to phponline.in, your trusted source for beginner-to-advanced level PHP Read more