"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Parse XML Responses from cURL in PHP Using SimpleXMLElement?

How to Parse XML Responses from cURL in PHP Using SimpleXMLElement?

Published on 2024-12-10
Browse:472

How to Parse XML Responses from cURL in PHP Using SimpleXMLElement?

Extracting XML Responses Using PHP cURL

In PHP, cURL can be utilized to retrieve data from servers. However, when the response is in XML format, the output may be stored in a scalar variable, making it challenging to parse. To address this, it's beneficial to convert the XML response into an object, hash, or array for simpler manipulation.

Consider the following code:

function download_page($path){
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,$path);
    curl_setopt($ch, CURLOPT_FAILONERROR,1);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
    curl_setopt($ch, CURLOPT_TIMEOUT, 15);
    $retValue = curl_exec($ch);          
    curl_close($ch);
    return $retValue;
}

$sXML = download_page('http://alanstorm.com/atom');
$oXML = new SimpleXMLElement($sXML);

foreach($oXML->entry as $oEntry){
    echo $oEntry->title . "\n";
}

In this code, the download_page function retrieves an XML document from a specified URL using cURL, with various options to ensure proper handling of errors, redirections, and timeouts. The result is stored in the $sXML variable.

To convert the XML response into an object, the SimpleXMLElement class is employed. This class provides methods for accessing individual elements and attributes of the XML document in a straightforward manner. In this example, we iterate through the entries in the document and print their titles.

By parsing the XML response into an object, it becomes considerably easier to access and manipulate the data it contains, enabling developers to extract specific information and process it effectively.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3