I have to read an XML file from an URL
$map_url = "http://maps.google.com/maps/api/directions/xml?origin=".$merchant_address_url."&destination=".$customer_address_url."&sensor=false";
This gives me an URL like:
I am using this function to read and then get data:
$response_xml_data = file_get_contents($map_url);
if($response_xml_data){
echo "read";
}
$data = simplexml_load_string($response_xml_data);
echo "<pre>"; print_r($data); exit;
But no luck, any help?
Your code seems right, check if you have fopen wrappers enabled (
allow_url_fopen = On
on php.ini)Also, as mentioned by other answers, you should provide a properly encoded URI or encode it using urlencode() function. You should also check if there is any error fetching the XML string and if there is any parsing error, which you can output using libxml_get_errors() as follows:
If the problem is you can't fetch the XML code maybe it's because you need to include some custom headers in your request, check how to use stream_context_create() to create a custom stream context for use when calling
file_get_contents()
on example 4 at http://php.net/manual/en/function.file-get-contents.phpfile_get_contents usually has permission issues. To avoid them, use:
Example:
$url = 'http://www.example.com'; $xml = simpleXML_load_file($url,"SimpleXMLElement",LIBXML_NOCDATA);
$url can be php file, as long as the file generate xml format data as output.
you can get the data from the XML by using "simplexml_load_file" Function. Please refer this link
http://php.net/manual/en/function.simplexml-load-file.php
It is working for me. I think you probably need to use
urlencode()
on each of the components of$map_url
.