如何使用php curl收到xml响应?

时间:2011-01-14 07:28:13

标签: php xml web-services curl

如何使用php curl收到xml响应?我不需要操纵xml或存储它或类似的东西。我只需要以普通的xml接收它。有谁知道怎么做?

1 个答案:

答案 0 :(得分:2)

$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, 'http://www.example.com/path/to/service'); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$store = curl_exec($ch);

$ store包含响应。