首页 > php教程 > PHP源码 > 正文

php curl 取得要跳转的url

PHP中文网
发布: 2016-05-26 08:21:17
原创
1360 人浏览过

取得要跳转的url,方便下一步操作。有时候我们不需要跳转的内容,而更需要跳转的网址就可以使用它了

//获得要跳转的网址,进行下一步操作
function  curl_post_302($url,$data=null) {

	$ch = curl_init();
	curl_setopt($ch,  CURLOPT_RETURNTRANSFER, 1);
	curl_setopt($ch, CURLOPT_URL,  $url);
	curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
	curl_setopt($ch, CURLOPT_TIMEOUT, 30);
	curl_setopt($ch, CURLOPT_POST, 1);
	curl_setopt($ch,  CURLOPT_POSTFIELDS, $vars);
	curl_setopt($ch,  CURLOPT_FOLLOWLOCATION, 1); // 获取转向后的内容          
	$data = curl_exec($ch);
	$Headers =  curl_getinfo($ch);		 
	curl_close($ch);
	if ($data != $Headers){		 
		return $Headers["url"];		  
	}else{
		return false;
	}

}
echo curl_post_302($302url);//得到要跳转的地址
登录后复制

                   

 以上就是php curl 取得要跳转的url的内容,更多相关内容请关注PHP中文网(www.php.cn)!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板