2011-01-14 52 views
0

如何使用php curl接收xml響應?我不需要操縱XML或存儲它或類似的東西。我只需要以簡單的XML接收它。有誰知道如何做到這一點?如何使用php curl接收xml響應?

+1

http://php.net/manual/en/curl.examples-basic.php – deceze 2011-01-14 07:30:43

回答

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 contains response。

+0

什麼是url,「http://www.example.com/path/to/service」應該是什麼? – Michael 2011-01-14 07:44:28