php使用curl访问的页面中,出现重定向时, 如何获取重定向后的内容

如题,代码如下:$url="http://www.xxx.com/xxx.php";$curl=curl_init($url);curl_setopt($curl,CUR... 如题, 代码如下:

$url = "http://www.xxx.com/xxx.php";
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_MAXREDIRS, 10);
$rs = curl_exec($curl);
var_dump($rs);

其中$url以及重定向后的页面均有输出内容, 但这程序出来的结果是出来的结果是string(0) ""

请问怎样才能输出$url的最终内容?
展开
 我来答
百度网友a435633
2010-01-28 · TA获得超过1234个赞
知道大有可为答主
回答量:1018
采纳率:0%
帮助的人:0
展开全部
程序没问题,能得到网页内容并输出。
有可能是你的 xxx.php 没有重定向成功。

如果在Linux下,可以先用
wget http://www.xxx.com/xxx.php
看看有没有输出想要的结果。

我用来测试的 xxx.php

<?php
function redirect($url)
{
if(headers_sent()) {
return false;
}
if(substr($url, 0, 4) != 'http') {
$schema = $_SERVER['SERVER_PORT'] == '443' ? 'https' : 'http';
$host = strlen($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME'];
$url = "$schema://$host$to";
}
header("HTTP/1.1 301 Moved Permanently");
header("Location: $url");
exit();
}
redirect('http://google.com/');
hml_h
2010-01-27 · TA获得超过109个赞
知道答主
回答量:89
采纳率:0%
帮助的人:83.8万
展开全部
我的怎么就行呢。。
************http://localhost/020space/test.php*****
<?php
//phpinfo()
$url = "http://localhost/020space/test2.php";
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL,$url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_MAXREDIRS, 10);
$rs = curl_exec($curl);
echo "runing curl...";
var_dump($rs);
?>

************http://localhost/020space/test2.php*****
<?php

$url = "http://www.hao123.com";

if (!empty($url))
{
Header("HTTP/1.1 303 See Other"); //这条语句可以不写
Header("Location: $url");
}
?>
$url has content....

************显示结果*****

runing curl...string(30645) "(然后是hao123.com的内容,不过貌似没有加载到CSS。。)
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式