Home > Backend Development > PHP Tutorial > How to Parse XML Responses from PHP cURL using SimpleXMLElement?

How to Parse XML Responses from PHP cURL using SimpleXMLElement?

Susan Sarandon
Release: 2024-10-29 01:25:02
Original
329 people have browsed it

How to Parse XML Responses from PHP cURL using SimpleXMLElement?

Getting an XML Response from PHP cURL

When using PHP's cURL method to invoke a server, the response can often be in XML format. By default, cURL stores the response as a scalar variable, which makes parsing challenging. However, there's a convenient solution to convert the response into an object, hash, or array for easier manipulation.

To achieve this, you can utilize PHP's SimpleXMLElement class, as demonstrated in the following code snippet:

<code class="php"><?php
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";
}
?></code>
Copy after login

This code downloads the XML response from a specified URL and parses it using the SimpleXMLElement class. The resulting object can be easily iterated over to access individual XML elements and their values, as shown in the example.

By converting the XML response into an object or an array, you can significantly simplify the parsing process and access the data in a structured and convenient manner. This approach provides greater flexibility and control over the XML data, making it easier to extract and manipulate.

The above is the detailed content of How to Parse XML Responses from PHP cURL using SimpleXMLElement?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template