如何使用php curl收到xml响应?我不需要操纵xml或存储它或类似的东西。我只需要以普通的xml接收它。有谁知道怎么做?
答案 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包含响应。