PHP रैपर की मदद से HTTP URL का उपयोग स्थानीय फाइलों की तरह व्यवहार करने के लिए किया जा सकता है। URL से सामग्री file_get_contents() के माध्यम से प्राप्त की जा सकती है और इसे प्रतिध्वनित किया जा सकता है। या रीडफाइल फ़ंक्शन का उपयोग करके पढ़ें।
ऐसा करने के लिए नीचे एक नमूना कोड दिया गया है -
$file = file_get_contents('https://example.com/'); echo $file;
एक विकल्प नीचे दिखाया गया है -
readfile('https://example.com/'); header('Content-type: text/xml'); //The correct MIME type has to be set before displaying the output.
एएसएक्सएमएल विधि का भी उपयोग किया जा सकता है। नीचे एक नमूना कोड है -
echo $xml->asXML(); or $xml->asXML('filename.xml'); //providing a name for the xml file.