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