响应是 xml
问问题
992 次
1 回答
0
根据您的帖子,我的理解是您想要 php 中 curl 示例的代码。下面的代码将使用 curl 发出 HTTP 请求并在 $content 中返回响应。
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL,'http://www.anydomain.com/anyapi.php?a=parameters');
$content = curl_exec($ch);
echo $content;
?>
希望这将有助于为您的问题提供更多信息,以便我可以帮助您。
于 2013-08-22T08:06:32.587 回答