我正在使用对API的CURL调用。该调用返回一个HTML DOM树,我在iframe中回显。问题是基本网址是指我自己的网站而不是API的网站。例如:<script type="text/javascript" src="/swf/swfobject.js"></script>
将引用我的网站而不是API。我看过CURL套装选项,但我找不到我要找的东西,有人可以帮帮我吗?我尝试使用preg_replace工作,但我有很多不同的inpredictable链接。 (以及它变脏的方式!)
CURL电话代码:
function CallAPI($method, $url, $data = false)
{
$curl = curl_init();
switch ($method)
{
case "POST":
curl_setopt($curl, CURLOPT_POST, 1);
if ($data)
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
break;
case "PUT":
curl_setopt($curl, CURLOPT_PUT, 1);
break;
default:
if ($data)
$url = sprintf("%s?%s", $url, http_build_query($data));
}
// Optional Authentication:
curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
//curl_setopt($curl, CURLOPT_USERPWD, "username:password");
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
return curl_exec($curl);
}
$output = CallAPI($method, $url, $data);
echo $output;
HTML:
<iframe src="videorecorder.php" frameBorder="0" scrolling="no"></iframe>
请帮助我!
由于