Syntax error How to echo XML file in PHP

How to echo XML file in PHP



HTTP URLs can be used to behave like local files, with the help of PHP wrappers. The contents from a URL can be fetched through the file_get_contents() and it can be echoed. or read using the readfile function.

Below is a sample code to do the same −

$file = file_get_contents('http://example.com/');
echo $file;

An alternative is demonstrated below −

readfile('http://example.com/');
header('Content-type: text/xml'); //The correct MIME type has to be set before displaying the output.

The asXML method also can be used. Below is a sample code −

echo $xml->asXML();
or
$xml->asXML('filename.xml'); //providing a name for the xml file.
Updated on: 2020-04-07T11:33:36+05:30

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements