PHP simplexml_load_file() Function
Example
Convert an XML file into an object, then output keys and elements of the object:
<?php
$xml=simplexml_load_file("note.xml");
print_r($xml);
?>
Run Example »
Definition and Usage
The simplexml_load_file() function converts an XML document to an object.
Syntax
simplexml_load_file(file, class, options, ns, is_prefix)
Parameter Values
Parameter | Description |
---|---|
file | Required. Specifies the path to the XML file |
class | Optional. Specifies the class of the new object |
options | Optional. Specifies additional Libxml parameters. Is set by specifying the option and 1 or 0 (TRUE or FALSE, e.g. LIBXML_NOBLANKS(1)) Possible values:
|
ns | Optional. Specifies a namespace prefix or URI |
is_prefix | Optional. Specifies a Boolean value. TRUE if ns is a prefix. FALSE if ns is a URI. Default is FALSE |
Technical Details
Return Value: | A SimpleXMLElement object on success. FALSE on failure |
---|---|
PHP Version: | 5+ |
More Examples
Assume we have the following XML file, "note.xml":
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
Example
Output the data from each element in the XML file:
<?php
$xml=simplexml_load_file("note.xml");
echo $xml->to . "<br>";
echo $xml->from . "<br>";
echo $xml->heading . "<br>";
echo $xml->body;
?>
Run Example »
Example
Output the element's name and data for each child node in the XML file:
<?php
$xml=simplexml_load_file("note.xml");
echo $xml->getName() . "<br>";
foreach($xml->children() as $child)
{
echo $child->getName() . ": " . $child . "<br>";
}
?>
Run Example »
❮ PHP SimpleXML Reference